Untitled
unknown
plain_text
2 years ago
429 B
4
Indexable
CREATE TABLE Eksamensresultat ( Studentnr CHAR(6), Emnekode CHAR(8), Dato DATE, Karakter CHAR(1), CONSTRAINT EksamensresultatPK PRIMARY KEY (Studentnr,Emnekode,Dato), CONSTRAINT EksamensresultatStudentnrFK FOREIGN KEY (Studentnr) REFERENCES Student(Studentnr), CONSTRAINT EksamensresultatEmnekodeFK FOREIGN KEY (Emnekode) REFERENCES Emne(Emnekode), CONSTRAINT EksamensresultatDatoFK FOREIGN KEY (Dato) REFERENCES Eksamen(Dato) );
Editor is loading...