10 lines
444 B
MySQL
10 lines
444 B
MySQL
|
INSERT INTO
|
||
|
members(id, cmene, picurl)
|
||
|
VALUES
|
||
|
(0, 'Cadey', 'https://mi.within.website/static/img/cadey.png'),
|
||
|
(1, 'Nicole', 'https://mi.within.website/static/img/nicole.png'),
|
||
|
(2, 'Jessie', 'https://mi.within.website/static/img/jessie.png'),
|
||
|
(3, 'Ashe', 'https://mi.within.website/static/img/ashe.png'),
|
||
|
(4, 'Sephie', 'https://mi.within.website/static/img/sephie.png'),
|
||
|
(5, 'Mai', 'https://mi.within.website/static/img/mai.png');
|