Answers for "dbms output"

SQL
3

print in pl sql

dbms_output.put_line("YOUR MESSAGE");
Posted by: Guest on February-17-2020
1

dbms output

--Before the declare
set serveroutput on;
--In the anon block/procedure/package/...
DBMS_OUTPUT.PUT_LINE( 'Hello world' );
Posted by: Guest on May-18-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language