Question: create table Orders ( Order _ id int primary key not null, Customer _ id int Foreign key References Customer ( Customer _ id )

create table Orders(
Order_id int primary key not null,
Customer_id int Foreign key References Customer(Customer_id),
EmployeeID int Foreign key References Employee(EmployeeID),
ShipName VARCHAR(255),
ShipAddress VARCHAR(255),
ShipCity VARCHAR(50),
ShipRegion VARCHAR(50),
ShipPostalCode VARCHAR(15),
ShipCountry VARCHAR(50),
ShipVia INT,
OrderDate DATE,
RequiredDate DATE,
ShippedDate DATE,
Freight DECIMAL(10,2))i need a correction please

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!