From 5da1875ba65e37b8d07e1c6d5c260f72bf5ee742 Mon Sep 17 00:00:00 2001 From: Bonnet Ronan Date: Wed, 30 Nov 2022 16:34:37 +0100 Subject: [PATCH] Create Publie_Scientifique table --- personnel.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/personnel.sql b/personnel.sql index 3554057..6ee436e 100644 --- a/personnel.sql +++ b/personnel.sql @@ -8,6 +8,14 @@ CREATE TABLE Personnel date_de_recrutement date, ); + +CREATE Publie_Scientifique( + idPublication INT NOT NULL, + idScientifique INT NOT NULL, + FOREIGN KEY (idPublication) REFERENCES Publication(idPublication), + FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique) +); + CREATE Publie_Doctorant( idPublication INT NOT NULL, idDoctorant INT NOT NULL,