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, 1958🔥, 0💬
Popular Posts:
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Calculate DATETIME Value Differences Using the DATEDIFF() Function in SQL Server Transact-SQL...