Skip to content
Snippets Groups Projects
Commit 6a5c0f4b authored by Yannis Devos's avatar Yannis Devos
Browse files

Ajout du script d'insertions des données représentatives

parent b5933467
No related branches found
No related tags found
No related merge requests found
data.sql 0 → 100644
INSERT INTO userAccount VALUES (1, 'toto', 'totopwd123'),
(2, 'tata', 'tatapwd'),
(3, 'titi', 'lepwdDeTiti'),
(4, 'tutu', '1234567890');
INSERT INTO thread VALUES (1, 2, 'Gaming'),
(2, 3, 'Animaux'),
(3, 3, 'Objet perdu'),
(4, 1, 'Discution');
INSERT INTO follow VALUES (2,1, TO_DATE('11/02/2025', 'DD/MM/YYYY')),
(3,2, TO_DATE('05/01/2025', 'DD/MM/YYYY')),
(3,3, TO_DATE('01/03/2025', 'DD/MM/YYYY')),
(1,4, TO_DATE('20/09/2025', 'DD/MM/YYYY'));
INSERT INTO msg VALUES (1, 3 , 'Bonjour !', 1),
(2, 4, 'Hello !', 1),
(3, 1, 'Mon objet était ici.', 3);
INSERT INTO reactions VALUES (2, 1, 'TRUE'),
(4,3, 'FALSE'),
(3, 3, 'TRUE');
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment