Database Programming With PL/SQL 2-1: Practice Activities
Database Programming With PL/SQL 2-1: Practice Activities
Database Programming With PL/SQL 2-1: Practice Activities
Try It / Solve It
1. Fill in the blanks.
number_of_copies PLS_INTEGER;
printer_name CONSTANT VARCHAR2(10);
deliver_to VARCHAR2(10) := Johnson;
by_when DATE := SYSDATE+1;
Copyright © 2020, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
3. Examine the following anonymous block and choose the appropriate statement.
DECLARE
fname VARCHAR2(25);
lname VARCHAR2(25) DEFAULT 'fernandez';
BEGIN
DBMS_OUTPUT.PUT_LINE(fname || ' ' || lname);
END;
4. In Application Express:
DECLARE
v_length_of_string INTEGER;
BEGIN
v_length_of_string := num_characters('Oracle Corporation');
DBMS_OUTPUT.PUT_LINE(v_length_of_string);
END;
5. Write an anonymous block that uses a country name as input and prints the highest and lowest
elevations for that country. Use the COUNTRIES table. Execute your block three times using
United States of America, French Republic, and Japan.
Copyright © 2020, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.