2022-03-29 15:53:43 +03:00
|
|
|
INSERT INTO
|
|
|
|
memo (
|
2022-05-19 13:32:04 +03:00
|
|
|
`id`,
|
2022-03-29 15:53:43 +03:00
|
|
|
`content`,
|
|
|
|
`creator_id`
|
|
|
|
)
|
2022-03-28 18:38:12 +03:00
|
|
|
VALUES
|
2022-03-29 15:53:43 +03:00
|
|
|
(
|
2022-05-19 13:32:04 +03:00
|
|
|
101,
|
2022-07-09 07:00:26 +03:00
|
|
|
'#Hello 👋 Welcome to memos',
|
2022-03-29 15:53:43 +03:00
|
|
|
101
|
|
|
|
);
|
2022-05-02 05:57:31 +03:00
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
2022-05-19 13:32:04 +03:00
|
|
|
`id`,
|
2022-05-02 05:57:31 +03:00
|
|
|
`content`,
|
2022-05-19 13:32:04 +03:00
|
|
|
`creator_id`
|
2022-05-02 05:57:31 +03:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
2022-05-19 13:32:04 +03:00
|
|
|
102,
|
2022-07-02 10:01:59 +03:00
|
|
|
'#TODO
|
|
|
|
- [ ] Take more photos about **🌄 sunset**;
|
2022-07-03 06:25:06 +03:00
|
|
|
- [x] Clean the room;
|
|
|
|
- [x] Read *📖 The Little Prince*;
|
2022-07-09 07:00:26 +03:00
|
|
|
(👆 click to toggle status)',
|
2022-07-02 10:01:59 +03:00
|
|
|
101
|
|
|
|
);
|
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
|
|
|
`id`,
|
|
|
|
`content`,
|
2022-07-08 17:23:27 +03:00
|
|
|
`creator_id`,
|
|
|
|
`visibility`
|
2022-07-02 10:01:59 +03:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
103,
|
2022-07-08 17:23:27 +03:00
|
|
|
'好好学习,天天向上。🤜🤛',
|
|
|
|
101,
|
|
|
|
'PUBLIC'
|
2022-05-02 05:57:31 +03:00
|
|
|
);
|
2022-07-07 15:22:36 +03:00
|
|
|
|
|
|
|
INSERT INTO
|
|
|
|
memo (
|
|
|
|
`id`,
|
|
|
|
`content`,
|
|
|
|
`creator_id`
|
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
104,
|
2022-07-07 18:11:20 +03: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 15:22:36 +03:00
|
|
|
102
|
|
|
|
);
|