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, 2748🔥, 0💬
Popular Posts:
How To Convert Numeric Expression Data Types using the CONVERT() Function in SQL Server Transact-SQL...
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...
How to put statements into a statement block in SQL Server Transact-SQL? You can put statements into...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...