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, 2732🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...