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-09 12:00:26 +08:00
|
|
|
'#Hello 👋 Welcome to memos',
|
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*;
|
2022-07-09 12:00:26 +08:00
|
|
|
(👆 click to toggle status)',
|
2022-07-02 15:01:59 +08:00
|
|
|
101
|
|
|
|
);
|
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
|
|
|
`id`,
|
|
|
|
`content`,
|
2022-07-08 22:23:27 +08:00
|
|
|
`creator_id`,
|
|
|
|
`visibility`
|
2022-07-02 15:01:59 +08:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
103,
|
2022-07-08 22:23:27 +08:00
|
|
|
'好好学习,天天向上。🤜🤛',
|
|
|
|
101,
|
|
|
|
'PUBLIC'
|
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,
|
2022-07-07 23:11:20 +08:00
|
|
|
'#TODO
|
|
|
|
- [x] Take more photos about **🌄 sunset**;
|
|
|
|
- [ ] Clean the classroom;
|
|
|
|
- [ ] Watch *👦 The Boys*;
|
|
|
|
(👆 click to toggle status)
|
|
|
|
',
|
|
|
|
102
|
|
|
|
);
|
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
|
|
|
`id`,
|
|
|
|
`content`,
|
|
|
|
`creator_id`
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
105,
|
|
|
|
'三人行,必有我师焉!👨🏫',
|
2022-07-07 20:22:36 +08:00
|
|
|
102
|
|
|
|
);
|