Question: Question 1 ) Create a SQL Server Script to create the below database schema in SQL Server. Create a new database called L _ LUNCHES
Question Create a SQL Server Script to create the below database schema in SQL Server.
Create a new database called LLUNCHES for this.
Hint: For Columns that have a composite key like lfoods the create table statement will be similar to
the following:CREATE TABLE LFOODS
SUPPLIERID VARCHAR REFERENCES LSUPPLIERS SUPPLIERID
PRODUCTCODE VARCHARNOT NULL,
MENUITEM INT NOT NULL,
DESCRIPTION VARCHAR NOT NULL,
PRICE
NUMERIC NOT NULL,
PRICEINCREASE NUMERIC
PRIMARY KEY SUPPLIERID PRODUCTCODE;
Submit the script you used to create the database above. It should be able to be run repeatedly. In
addition, submit the tree in SSMS that shows your database created, with all the tables showing.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
