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 CREATE TABLE Personnel
( (
idPersonnel int CONSTRAINT UnePersonne PRIMARY KEY, idPersonnel INT CONSTRAINT UnePersonne PRIMARY KEY,
nom char, nom CHAR,
prenom char, prenom CHAR,
date_de_naissance date, date_de_naissance DATE,
adress char, adress CHAR,
date_de_recrutement date, date_de_recrutement DATE,
); );
CREATE Publie_Doctorant( CREATE
idPublication INT NOT NULL,
idDoctorant INT NOT NULL,
FOREIGN KEY (idPublication) REFERENCES Publication(idPublication), CREATE TABLE Scientifique(
FOREIGN KEY (idDoctorant) REFERENCES Doctorant(idDoctorant) idScientique INT NOT NULL,
idPersonnel INT NOT NULL,
grade CHAR,
PRIMARY KEY(idPersonnel)
); );
CREATE TABLE Publie_Externe( CREATE TABLE Publie_Externe(