CREATE TABLE Products
(
ProductID NUMBER NOT NULL,
ProductName VARCHAR2(40) NOT NULL,
QuantityPerUnit VARCHAR2(20),
UnitPrice NUMBER,
UnitsInStock NUMBER,
UnitsOnOrder NUMBER,
ReorderLevel NUMBER,
Discontinued NUMBER(1) NOT NULL,
CONSTRAINT PK_Products
PRIMARY KEY (ProductID),
CONSTRAINT CK_Products_UnitPrice CHECK ((UnitPrice>= 0)),
CONSTRAINT CK_ReorderLevel CHECK ((ReorderLevel>= 0)),
CONSTRAINT CK_UnitsInStock CHECK ((UnitsInStock>= 0)),
CONSTRAINT CK_UnitsOnOrder CHECK ((UnitsOnOrder>= 0)))
/
I have provided SQL code to create all tables and insertall data. There is an error in setting referential integrity: oneof the tables is missing references. Read the code and identify theproblem. You can either modify create table statement or add altertable statement to include missing references
Expert Answer
An answer will be send to you shortly. . . . .