Create Preside table
This commit is contained in:
parent
5da1875ba6
commit
0061d4e723
1 changed files with 6 additions and 0 deletions
|
@ -8,6 +8,12 @@ CREATE TABLE Personnel
|
||||||
date_de_recrutement date,
|
date_de_recrutement date,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE Preside(
|
||||||
|
idCongres INT NOT NULL,
|
||||||
|
idScientifique INT NOT NULL,
|
||||||
|
FOREIGN KEY (idCongres) REFERENCES Congres(idCongres),
|
||||||
|
FOREIGN KEY (idScientifique) REFERENCES Scientifique(idScientifique)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE Publie_Scientifique(
|
CREATE Publie_Scientifique(
|
||||||
idPublication INT NOT NULL,
|
idPublication INT NOT NULL,
|
||||||
|
|
Loading…
Reference in a new issue