Oracle
 sql >> Base de données >  >> RDS >> Oracle

SQL :création de tables avec des clés primaires et des clés étrangères référençant (

Pour une clé étrangère en ligne, vous ne pouvez pas utiliser la foreign key mot-clé. Vous avez également un , pendant à la fin :

CREATE TABLE BOOK 
(
  ISBN INTEGER PRIMARY KEY,
  year integer CHECK (year BETWEEN 1900 AND 2016),
  title varchar (60) REFERENCES FORFATTER (BOK),
  publisher utgiver varchar (90) --<<< remove the comma here
);

Alternative :

CREATE TABLE BOOK 
(
  ISBN INTEGER PRIMARY KEY,
  year integer CHECK (year BETWEEN 1900 AND 2016),
  title varchar (60),
  publisher utgiver varchar (90), --<< for this syntax you need the comma
  foreign key (title) REFERENCES FORFATTER (BOK) 
);