Collections:
PL/SQL Anonymous Block in Oracle
What Is an Anonymous Block in Oracle?
✍: FYIcenter.com
An anonymous block is a PL/SQL code block with no name. It consists of three parts:
Here how a complete anonymous block should look like:
DECLARE -- Declaration statements BEGIN -- Executable statements EXCEPTION -- Error handling statements END;
⇒ PL/SQL Named Program Unit in Oracle
⇐ Different Types of PL/SQL Code Blocks in Oracle
2018-11-29, 3221🔥, 0💬
Popular Posts:
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...
How to check if two JSON values have overlaps using the JSON_OVERLAPS() function? JSON_OVERLAPS(json...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
Where to find answers to frequently asked questions on INSERT, UPDATE and DELETE Statements in MySQL...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...