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 1) Create a SQL Server Script to create the below database schema in SQL Server.
Create a new database called L_LUNCHES for this.
Hint: For Columns that have a composite key (like l_foods), the create table statement will be similar to
the following:CREATE TABLE L_FOODS
(SUPPLIER_ID VARCHAR(3) REFERENCES L_SUPPLIERS( SUPPLIER_ID),
PRODUCT_CODE VARCHAR(2)NOT NULL,
MENU_ITEM INT NOT NULL,
DESCRIPTION VARCHAR(20) NOT NULL,
PRICE
NUMERIC(4,2) NOT NULL,
PRICE_INCREASE NUMERIC(4,2),
PRIMARY KEY( SUPPLIER_ID, PRODUCT_CODE));
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 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 Programming Questions!