HomeSQL/PLSQLOracle SQL/PLSQL Section 1.4: Hello World from PL/SQL Oracle SQL/PLSQL Section 1.4: Hello World from PL/SQL Admin December 24, 2024 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;
0 Comments