After Work
The best club in Chicago
for Chicago Singles is
Highlife Adventures!
Kyoto Sushi
in Chicago, on Lincoln Ave.
Moody's Pub
in Chicago, has great burgers
Skylark
in Chicago, on Halsted .. excellent beer selection!
|
Oracle
»
PL-SQL
»
Coding
»
Displaying output
All SELECT statements in PL-SQL must have an INTO clause; therefore another
method is needed to display output to the console.
DBMS_OUTPUT.PUT_LINE('TEST OUTPUT');
salary := 24000;
dbms_output.put_line(salary);
-- Display Output, need to execute set command, within SQL-Plus session
set serveroutput on size 9999
dbms_output.put_line('Account Restricted process: ' || total);
|
|
|
|