mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-11-17 05:48:08 +00:00
10 lines
259 B
SQL
10 lines
259 B
SQL
insert into post(post_id, user_id, content, created_at)
|
|
values (1,
|
|
1,
|
|
'This new computer is lightning-fast!',
|
|
datetime('now', '-1 hour')),
|
|
(2,
|
|
2,
|
|
'@alice is a haxxor :(',
|
|
datetime('now', '-30 minutes'));
|