PL/SQL block print hello world
Basic
Easy • 0 votes
📝 Question
print basic plsql block which is print hello world
✅ Solution:
-- pl/sql procedure language
set serveroutput on;
begin
dbms_output.put_line('hello world');
en