About 1,160 results
Open links in new tab
  1. CREATE FUNCTION Statement - Oracle Help Center

    The CREATE FUNCTION statement creates or replaces a standalone function or a call specification.

  2. PL/SQL Function - Oracle Tutorial

    Summary: In this tutorial, you’ll learn how to develop a PL/SQL function to perform a specific task and return a value. In PL/SQL, a function is a reusable code block that performs a specific task and …

  3. Oracle / PLSQL: Functions - TechOnTheNet

    This Oracle tutorial explains how to create and drop functions in Oracle / PLSQL with syntax and examples. In Oracle, you can create your own functions. The syntax for a function is:

  4. Oracle Function Syntax | Correct PL/SQL (Create Function Return …

    This lesson focuses on recognizing correct function syntax, including where parameters, the return datatype, declarations, and the executable body must appear.

  5. PL/SQL Functions - GeeksforGeeks

    Jun 15, 2024 · A PL/SQL recursive function is a function that calls itself to perform a specific task. The function continues to call itself until a certain condition is met, at which point it returns a value.

  6. SQL Functions - Oracle Help Center

    Syntax for SQL Functions A function is a command that manipulates data items and returns a single value. The sections that follow show each SQL function and its related syntax. Refer to Subclauses …

  7. PL/SQL - Functions - Online Tutorials Library

    In this chapter, we will discuss the functions in PL/SQL. A function is same as a procedure except that it returns a value. Therefore, all the discussions of the previous chapter are true for functions too. A …

  8. PL/SQL Tutorial - PL/SQL Functions

    A function is a named PL/SQL Block which is similar to a procedure. The major difference between a procedure and a function is, a function must always return a value, but a procedure may or may not …

  9. PL/SQL Function - Oracle PL/SQL Tutorial

    A PL/SQL function is a block of PL/SQL code that can be called by another block of code or from a SQL statement. It returns a single value, which can be a scalar value or a record type.

  10. Oracle SQL Functions

    SQL functions are built into Oracle and are available for use in various appropriate SQL statements. You can also create your own function using PL/SQL. Single-row functions return a single result row for …