mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 09:22:51 +08:00
23 lines
277 B
SQL
23 lines
277 B
SQL
INSERT INTO
|
|
memo (
|
|
`content`,
|
|
`creator_id`
|
|
)
|
|
VALUES
|
|
(
|
|
'#memos 👋 Welcome to memos',
|
|
101
|
|
);
|
|
|
|
INSERT INTO
|
|
memo (
|
|
`content`,
|
|
`creator_id`,
|
|
`row_status`
|
|
)
|
|
VALUES
|
|
(
|
|
'好好学习,天天向上。',
|
|
101,
|
|
'ARCHIVED'
|
|
);
|