Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Create a report listing only the column DESCRIPTION, PARTNUM, CLASS, and PRICE of all PART whose CLASS is equal to HW. 2. Create a

1. Create a report listing only the column DESCRIPTION, PARTNUM, CLASS, and PRICE of all PART whose CLASS is equal to HW.

2. Create a report listing only the column PARTNUM, DESCRIPTION and PRICE of all PARTS where price is less than 500. Sort the PRICE in ascending order.

3. Create a report listing only the column DESCRIPTION, ONHAND and WAREHOUSE of all PARTS where ONHAND is greater than or equal to 21.

4. Create a report listing only the column DESCRIPTION, CLASS and PRICE of all PARTS where class is not equal to AP.

5. Create a report listing only the column CLASS, DESCRITPION and PRICE of all PARTS where price range is between 200 to 500. Sort the Price in descending order.


Table Name: PARTS

CREATE TABLE PARTS(

PARTNUM CHAR(4) PRIMARY KEY,

DESCRIPTION VARCHAR(20),

ONHAND NUMBER(6),

CLASS CHAR(5),

WAREHOUSE NUMBER(6),

PRICE NUMBER(6));

 

INSERT INTO PARTS VALUES('AT94', 'IRON',50,'HW',3,2495);

INSERT INTO PARTS VALUES('BVO6','HOME GYM'    ,45,'SG',2,79495);

INSERT INTO PARTS VALUES('CD52','MICROWAVE OVEN',32,'AP',1,165);

INSERT INTO PARTS VALUES('DL71','CORDLESS DRILL',21,'HW',3,12995);

INSERT INTO PARTS VALUES('DR93','GAS RANGE',21,'AP',2,495);

INSERT INTO PARTS VALUES('DW11','WASHER',12,'AP',3,399);

INSERT INTO PARTS VALUES('FD21','STAND MIXER',22,'HW',3,159);

INSERT INTO PARTS VALUES('KL62','DRYER',12,'AP',1,349);

INSERT INTO PARTS VALUES('KT03','DISHWASHER',8,'AP',3,595);

INSERT INTO PARTS VALUES('KV29','TREADMILL',9,'SG',2,1390);

 

 

PARTNUM

DESCRIPTION

ONHAND

CLASS

WAREHOUSE

PRICE

AT94

IRON

50

HW

3

2495

BVO6

HOME GYM

45

SG

2

79495

CD52

MICROWAVE OVEN

32

AP

1

165

DL71

CORDLESS DRILL

21

HW

3

12995

DR93

GAS RANGE

21

AP

2

495

DW11

WASHER

12

AP

3

399

FD21

STAND MIXER

22

HW

3

159

KL62

DRYER

12

AP

1

349

KT03

DISHWASHER

8

AP

3

595

KV29

TREADMILL

9

SG

2

1390

 

PARTS structure

COLUMN NAME

DATA TYPE/SIZE

KEY

NULL

PARTNUM

CHAR – 4

PRIMARY

NOT NULL

DESCRIPTION

VARCHAR – 20

 

NOT NULL

ONHAND

NUMBER – 6

 

 

CLASS

CHAR – 5

 

 

WAREHOUSE

NUMBER – 6

 

 

PRICE

NUMBER – 6

 

 


Step by Step Solution

3.30 Rating (168 Votes )

There are 3 Steps involved in it

Step: 1

1 Create a report listing only the column DESCRIPTIONPARTNUM CLASS and PRICE of all PART whose CLASS ... 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

Step: 3

blur-text-image

Document Format ( 2 attachments)

PDF file Icon
635e1ff157bde_181661.pdf

180 KBs PDF File

Word file Icon
635e1ff157bde_181661.docx

120 KBs Word File

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

Java Programming

Authors: Joyce Farrell

9th edition

1337397075, 978-1337397070

More Books

Students also viewed these Physics questions

Question

2. Speak in a firm but nonthreatening voice.

Answered: 1 week ago