Hey experts, please help me out on this :( xx Sample database: For all the implemented tasks, your report or output must include a listing of all PL/SQL statements processed. To achieve that put the following SQL*Plus commands in all your scripts: SPOOL file-name SET ECHO ON SET FEEDBACK ON SET LINESIZE 100 SET PAGESIZE 200 SET SERVEROUTPUT ON at the beginning of SQL script and SPOOL OFF at the end of SQL script. PARTSUPP table : i. SELECT p_brand, p_type,
Hey experts, please help me out on this :( xx
Sample
For all the implemented tasks, your report or output must include a listing of all PL/SQL
statements processed. To achieve that put the following SQL*Plus commands in all
your scripts:
SPOOL file-name
SET ECHO ON
SET FEEDBACK ON
SET LINESIZE 100
SET PAGESIZE 200
SET SERVEROUTPUT ON
at the beginning of SQL script and
SPOOL OFF
at the end of SQL script.
PARTSUPP table :
i. SELECT p_brand, p_type, p_retailprice
FROM part;
ii. SELECT count(*)
FROM part
WHERE p_brand = 'Brand#18';
iii. SELECT l_orderkey, count(*)
FROM lineitem
WHERE l_orderkey = 1184000
GROUP BY l_orderkey;
iv. SELECT max(ps_suppkey)
FROM partsupp;
v. SELECT ps_suppkey, ps_partkey, ps_supplycost
FROM partsupp
WHERE ps_suppkey = 3699
AND ps_partkey = 700;
Step by step
Solved in 2 steps