Collections:
PL/SQL Procedure in Oracle
What Is a Procedure in Oracle?
✍: FYIcenter.com
A procedure is a named program unit. It consists of three parts:
Here how a complete procedure should look like:
PROCEDURE name (parameter_1, parameter_2) AS -- Declaration statements BEGIN -- Executable statements EXCEPTION -- Error handling statements END;
⇐ PL/SQL Named Program Unit in Oracle
2018-11-29, 2653🔥, 0💬
Popular Posts:
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...