CREATE TABLE Persons (
  P_Id int NOT NULL,
  LastName varchar(255) NOT NULL,
  FirstName varchar(255),
  PRIMARY KEY (P_Id)
)

CREATE TABLE Orders (
  O_Id int NOT NULL PRIMARY KEY,
  OrderNo int NOT NULL,
  P_Id int FOREIGN KEY REFERENCES Persons(P_Id)
)

I am getting an error while creating Table Orders:

ORA-00907: missing right parenthesis

link|improve this question

75% accept rate
leave the two words FOREIGN KEY out. Either you use FOREIGN KEY as a separate clause (separated by a comma) and give a field list, or use REFERENCES at the end of an existing field. See Oracle SQL Reference. – mihi Jul 25 '11 at 17:20
feedback

1 Answer

up vote 6 down vote accepted

If you are defining a foreign key inline with column definition then you shouldn't specify FOREIGN KEY. Drop it from the definition.

Try this:

CREATE TABLE Orders 
( 
  O_Id int NOT NULL PRIMARY KEY, 
  OrderNo int NOT NULL,
  P_Id int REFERENCES Persons(P_Id)
)
link|improve this answer
Thank you very much , but i have seen examples , P_Id int FOREIGN KEY REFERENCES Persons(P_Id) – Kiran Jul 26 '11 at 14:30
Are you sure if those were for Oracle database? – Cybernate Jul 26 '11 at 20:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.