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, 3404🔥, 0💬
Popular Posts:
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...