It6202 Lab - 004
It6202 Lab - 004
Direction:
Use the Parts table in LabExer003 (previous week)
This activity covers all SELECT statement discussed starting week 5-7.
Based on the given table: PARTS as shown below, write the PL/SQL in order to get the printed output
per number. Write your answer in a short bond paper.
Do not used IN condition.
Copy and paste the PL/SQL code on the space provided after each questions.
Table Name: PARTS
PARTNUM DESCRIPTION ONHAND CLAS WAREHOUSE PRICE
S
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 DATA KEY NULL
NAME TYPE/SIZE
PARTNUM CHAR – 4 PRIMARY NOT NULL
DESCRIPTION VARCHAR – 20 NOT NULL
ONHAND NUMBER – 6
CLASS CHAR – 5
WAREHOUSE NUMBER – 6
PRICE NUMBER – 6
10. SQL>SELECT DESCRIPTION, PRICE*.5 +PRICE-100 FROM PARTS WHERE PRICE >
‘10000’;
13. SQL>SELECT DESCRIPTION, ONHAND, CLASS FROM PARTS WHERE PRICE ‘%5’
AND CLASS = ‘AP’;
Including logical conditions into our search procedure enables us to produce a report that is
substantially more focused and precisely identifies the particular objects or data points we are
looking for, which eventually results in a more effective and efficient workflow. This is so that, in
the long term, we can save time and resources by being able to filter out information that isn't
important to our task or purpose and focus on the essential components.