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, 2702🔥, 0💬
Popular Posts:
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...