Anonymous PL/SQL Blocks
Anonymous blocks are unnamed PL/SQL units that begin with DECLARE or BEGIN.
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello PL/SQL!');
END;They are not stored in the database and execute once when run.
Anonymous blocks are unnamed PL/SQL units that begin with DECLARE or BEGIN.
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello PL/SQL!');
END;They are not stored in the database and execute once when run.