This commit is contained in:
Olougouna Axel 2022-11-30 16:43:20 +01:00
parent 3a60500222
commit 76256523d0

View file

@ -1,18 +1,21 @@
CREATE TABLE Personnel
(
idPersonnel int CONSTRAINT UnePersonne PRIMARY KEY,
nom char,
prenom char,
date_de_naissance date,
adress char,
date_de_recrutement date,
idPersonnel INT CONSTRAINT UnePersonne PRIMARY KEY,
nom CHAR,
prenom CHAR,
date_de_naissance DATE,
adress CHAR,
date_de_recrutement DATE,
);
CREATE Publie_Doctorant(
idPublication INT NOT NULL,
idDoctorant INT NOT NULL,
FOREIGN KEY (idPublication) REFERENCES Publication(idPublication),
FOREIGN KEY (idDoctorant) REFERENCES Doctorant(idDoctorant)
CREATE
CREATE TABLE Scientifique(
idScientique INT NOT NULL,
idPersonnel INT NOT NULL,
grade CHAR,
PRIMARY KEY(idPersonnel)
);
CREATE TABLE Publie_Externe(