Compare commits

..

No commits in common. "ebb8e0ebb042c8e6526d6db68553636d759f3b9a" and "ee10205aa1e88ccfd8d8ea84a1b46d49ad818d81" have entirely different histories.

2 changed files with 52 additions and 14 deletions

View file

@ -54,49 +54,100 @@ INSERT INTO Personnel (
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
0, 0,
'LAAS', 'LAAS',
'France' 'France'
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
1, 1,
'CNES', 'CNES',
'France' 'France'
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
2, 2,
'GEAS', 'GEAS',
'Allemagne' 'Allemagne'
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
3, 3,
'RUAF', 'RUAF',
'Russie' 'Russie'
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
4, 4,
'ENFD', 'ENFD',
'Angleterre' 'Angleterre'
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
5, 5,
'LUBN', 'LUBN',
'Luxembourg' 'Luxembourg'
); );
-- Ronan
INSERT INTO Labo_externe ( INSERT INTO Labo_externe (
6, 6,
'BRBN', 'BRBN',
'Bresil' 'Bresil'
); );
-- Ronan
INSERT INTO Auteur_Externe (
0,
'Jean',
'Dupont',
'dupont@mail.com',
0
);
-- Ronan
INSERT INTO Auteur_Externe (
1,
'Jacques',
'Tondu',
'tondu@mail.com',
0
);
-- Ronan
INSERT INTO Auteur_Externe (
2,
'Leonardo',
'Paulo',
'paulo@mail.com',
6
);
-- Ronan
INSERT INTO Auteur_Externe (
3,
'Otto',
'Schaofe',
'schaofe@mail.com',
2
);
-- Ronan
INSERT INTO Auteur_Externe (
4,
'Igor',
'Medvedev',
'medvedev@mail.com',
3
);
INSERT INTO Projet ( INSERT INTO Projet (
01, 01,
'BaseDeDonnee', 'BaseDeDonnee',
@ -121,18 +172,6 @@ INSERT INTO Projet (
002 002
); );
INSERT INTO Projet (
03,
'Programation web',
'ProgWeb',
DATE '2022-04-07',
DATE '2022-06-07',
80,
10000,
6000,
003
);
INSERT INTO Publication ( INSERT INTO Publication (
001, 001,
'recherche scientifique sur la chimie organique', 'recherche scientifique sur la chimie organique',

View file

@ -1 +0,0 @@
-- Nathan