Question: Please answer the question as soon as possible . Thank you . CREATE TABLE Customer (Customer_No Char(5) NOT NULL, Customer_Name Varchar2(30) NOT NULL, Gender Char(1)

 Please answer the question as soon as possible . Thank you

. CREATE TABLE Customer (Customer_No Char(5) NOT NULL, Customer_Name Varchar2(30) NOT NULL,

Gender Char(1) NOT NULL, Address Varchar2(60) NOT NULL, Email Address Varchar2(60) NOT

NULL, Telephone No Number(10) NOT NULL, No of Clothes Number(2) NOT NULL,

Cust Size Char(5) NOT NULL, Receipt_Date Date NOT NULL, Return Date Date

NOT NULL, CONSTRAINT Customer Newpk PRIMARY KEY (Customer_No)); CREATE TABLE Designer (Designer_No

Char(5) NOT NULL, Designer_Name Varchar2(30) NOT NULL, Address Varchar2(60) NOT NULL, Email

Please answer the question as soon as possible . Thank you .

CREATE TABLE Customer (Customer_No Char(5) NOT NULL, Customer_Name Varchar2(30) NOT NULL, Gender Char(1) NOT NULL, Address Varchar2(60) NOT NULL, Email Address Varchar2(60) NOT NULL, Telephone No Number(10) NOT NULL, No of Clothes Number(2) NOT NULL, Cust Size Char(5) NOT NULL, Receipt_Date Date NOT NULL, Return Date Date NOT NULL, CONSTRAINT Customer Newpk PRIMARY KEY (Customer_No)); CREATE TABLE Designer (Designer_No Char(5) NOT NULL, Designer_Name Varchar2(30) NOT NULL, Address Varchar2(60) NOT NULL, Email Address Varchar2(60) NOT NULL, Telephone_No Number(10) NOT NULL, Social Med_Plat Varchar2(30) NOT NULL, Ne Designed Number(3) NOT NULL, Salary Number(4) NOT NULL, CONSTRAINT Designer, Nepk PRIMARY KEY (Designer_No)); CREATE TABLE Clothes ( Clothes_No Char(5) NOT NULL, Type_Clothes Varchar2(30) NOT NULL, Cond_Clothes Varchar2(20) NOT NULL, Type_Fabric Varchar2(20) NOT NULL, Colour Clothes Varchar2(10) NOT NULL, Price Number(3) NOT NULL, Customer No Char(5) NOT NULL, Designer_No Char(5) NOT NULL, CONSTRAINT Clothes_No_pk PRIMARY KEY (Clothes_No), CONSTRAINT Customer_No_fk FOREIGN KEY (Customer_No) REFERENCES Customer, CONSTRAINT Designer Neuk FOREIGN KEY (Designer_No) REFERENCES Designer); INSERT INTO Customer VALUES ('CU001', 'Sarah', 'F', 163, Main St.', 'sarah365@mail.com', 0134576232, 2, 'M', 07-05-2021', '27-05-2021'); INSERT INTO Customer VALUES ('CUO02', 'Ahmed', 'M', 32, Manse Rd. ahmed35@mail.com', 0176158359, 1, 'I', '15- 06-2021', '05-07-2021'); INSERT INTO Customer VALUES ('CU003', John', 'M', '56, clover Dr. johns@mail.com', 0177658349, 3, 's', "04-10- 2021', '24-10-2021' ); INSERT INTO Customer VALUES ('CU004', Susan', 'F', '22, Deer st.'; sus 3@mail.com', 0114563732, 1, "XL", "27- 12-2021', '17-01-2022'); INSERT INTO Customer VALUES ('C1005', 'David', 'M', '6, Lawrence st.', 'dave99@hotmail.com', 0163732343, 5, 'XXL', '13-01-2022', '03-02-2022" ); INSERT INTO Designer VALUES (0001', 'Hannah', '2, Manor Rd.', 'hnnh23@mail.com', 1827456877, "bannahsdezine', 1999, 99); INSERT INTO Designer VALUES ('0002', 'Hamid', '8, Holhead st.', 'hmd67@mail.com', 168745397, 'hmmmdesigns', 7000, 230); INSERT INTO Designer VALUES ('0003', 'Camila', 18, Dale Rd.', 'coco@mail.com', 167788977, 'cocofficial', 5000, 160); INSERT INTO Designer VALUES ('0004', James', '601, W Main St.', 'james80@mail.com', 145668977, 'jamjamdoes', 2000, 56); INSERT INTO Designer VALUES ('0005', 'Mary', '420, N. Santa Anita Street', 'mry29@mail.com', 145979987, 'maryfashion', 4000, 81); INSERT INTO clothes VALUES ('CL001', 'Shirt'; 'Light', 'Cotton', 'white', 25, 'CU003', '1002'); INSERT INTO clothes VALUES (CL002', Pants', 'Intermediate', 'Denim', 'Blue', 35, 'CU001', 'D005); INSERT INTO Clothes VALUES ('CL003', 'Scarf', 'Light', 'Silk', 'Pink', 15, 'CU004', 'D003'); INSERT INTO Clothes VALUES ('CL004,- Skirt', 'Bad', 'velvet', 'Green', 38, CU001', '2001'); INSERT INTO Clothes VALUES ('CL005', 'Sweatshirt', 'Intermediate', Polyester', 'Black', 30, 'CU005', '2004'); INSERT INTO Clothes VALUES ('CL006', 'Jacket, Light', 'Leather', 'Black', 40, "CU002', '2003'); Query For customers who received the clothes from June 2021 onwards, show the customers' names and the types of clothes received by the customers. Answer: URLAURA

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!