mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +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!',
|
|
timestamp(now(), '-1:00:00')),
|
|
(2,
|
|
2,
|
|
'@alice is a haxxor :(',
|
|
timestamp(now(), '-0:30:00'));
|