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, 3309🔥, 0💬
Popular Posts:
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
How To Update Multiple Rows with One UPDATE Statement in SQL Server? If the WHERE clause in an UPDAT...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...