6 lines
74 B
SQL
6 lines
74 B
SQL
set serveroutput on
|
|
|
|
BEGIN
|
|
DBMS_OUTPUT.PUT_LINE('Hello world!');
|
|
END;
|
|
/
|