2022-03-29 20:53:43 +08:00
|
|
|
INSERT INTO
|
|
|
|
memo (
|
2022-05-19 18:32:04 +08:00
|
|
|
`id`,
|
2022-03-29 20:53:43 +08:00
|
|
|
`content`,
|
|
|
|
`creator_id`
|
|
|
|
)
|
2022-03-28 23:38:12 +08:00
|
|
|
VALUES
|
2022-03-29 20:53:43 +08:00
|
|
|
(
|
2022-05-19 18:32:04 +08:00
|
|
|
101,
|
2022-07-03 11:25:06 +08:00
|
|
|
'#Hello 👋 Welcome to memos
|
|
|
|
![](https://api.star-history.com/svg?repos=usememos/memos&type=Date&size=mobile)',
|
2022-03-29 20:53:43 +08:00
|
|
|
101
|
|
|
|
);
|
2022-05-02 10:57:31 +08:00
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
2022-05-19 18:32:04 +08:00
|
|
|
`id`,
|
2022-05-02 10:57:31 +08:00
|
|
|
`content`,
|
2022-05-19 18:32:04 +08:00
|
|
|
`creator_id`
|
2022-05-02 10:57:31 +08:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
2022-05-19 18:32:04 +08:00
|
|
|
102,
|
2022-07-02 15:01:59 +08:00
|
|
|
'#TODO
|
|
|
|
- [ ] Take more photos about **🌄 sunset**;
|
2022-07-03 11:25:06 +08:00
|
|
|
- [x] Clean the room;
|
|
|
|
- [x] Read *📖 The Little Prince*;
|
|
|
|
(👆 click to toggle status)
|
2022-07-02 15:01:59 +08:00
|
|
|
',
|
|
|
|
101
|
|
|
|
);
|
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
|
|
|
`id`,
|
|
|
|
`content`,
|
|
|
|
`creator_id`
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
103,
|
|
|
|
'好好学习,天天向上。🤜🤛',
|
2022-05-19 18:32:04 +08:00
|
|
|
101
|
2022-05-02 10:57:31 +08:00
|
|
|
);
|
2022-07-07 20:22:36 +08:00
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
|
|
|
`id`,
|
|
|
|
`content`,
|
|
|
|
`creator_id`
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
104,
|
|
|
|
'好好学习,天天向上。🤜🤛',
|
|
|
|
102
|
|
|
|
);
|