Oracle SQL/PLSQL Section 1.4: Hello World from PL/SQL

 Oracle SQL/PLSQL Section 1.4: Hello World from PL/SQL.


 /* PL/SQL is a core Oracle Database technology, allowing you to build clean, secure, optimized APIs to SQL and business logic. */



 SET serveroutput ON;

 BEGIN
 DBMS_OUTPUT.PUT_LINE ('Hello World!');
 END;


Post a Comment

0 Comments