Collections:
What Is a 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;
⇒ What Is a Function in Oracle
⇐ Creating Oracle PL/SQL Procedures and Functions
2018-01-27, 2783🔥, 0💬
Popular Posts:
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
What Are the Basic Features of a Trigger in SQL Server? Since a SQL Server trigger is a really an ev...