Collections:
Create a Stored Function in Oracle
How To Create a Stored Function in Oracle?
✍: FYIcenter.com
A stored function is a function with a specified name and stored into the current database. If you want to create a stored function, you can use the CREATE FUNCTION statement. The example script below creates a stored procedure:
SQL> CREATE OR REPLACE FUNCTION GET_SITE 2 RETURN VARCHAR2 AS 3 BEGIN 4 RETURN 'FYICentere.com'; 5 END; 6 / Function created.
⇒ Call a Stored Function in Oracle
⇐ Pass Parameters to Procedures in Oracle
2018-11-11, 3560🔥, 0💬
Popular Posts:
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...