Collections:
What Is a Function in Oracle
What Is a Function in Oracle?
✍: FYIcenter.com
A function is a named program unit. It consists of three parts:
Here how a complete procedure should look like:
FUNCTION name (parameter_1, parameter_2) RETURN type AS -- Declaration statements BEGIN -- Executable statements RETURN value; EXCEPTION -- Error handling statements END;
⇒ Define Anonymous Procedures without Variables in Oracle
⇐ What Is a Procedure in Oracle
2018-01-27, 3067🔥, 0💬
Popular Posts:
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...