hjbh
This commit is contained in:
parent
3a60500222
commit
76256523d0
1 changed files with 14 additions and 11 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue