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
FOREIGN KEYout. 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