Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a SQL statement to INSERT five records to each table. SQL commands must run correct. CREATE TABLE Season ( Season_id int PRIMARY KEY, Type_of_Season

Write a SQL statement to INSERT five records to each table. SQL commands must run correct.

CREATE TABLE Season ( Season_id int PRIMARY KEY, Type_of_Season varchar(255), Color varchar(255), Size_name varchar(255), Supplier varchar(255));

CREATE TABLE Price ( Item_id int PRIMARY KEY, Size_name varchar(255), Color varchar(255), Product_id int, Supplier varchar(255) );

CREATE TABLE Clothing ( Product_id int PRIMARY KEY, Size_name varchar(255), Name varchar(255), Supplier varchar(255), Type_of_season varchar(255) );

CREATE TABLE Shoes ( Product_id int PRIMARY KEY, Size_name varchar(255), Type varchar(255), Supplier varchar(255), Name varchar(255) );

CREATE TABLE Sizes ( Size_id int PRIMARY KEY, Size_name varchar(255), Color varchar(255), Supplier varchar(255), Product_id int );

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems A Practical Approach To Design Implementation And Management

Authors: THOMAS CONNOLLY

6th Edition

9353438918, 978-9353438913

More Books

Students also viewed these Databases questions

Question

Explain methods of metal extraction with examples.

Answered: 1 week ago