About 1,550,000 results
Open links in new tab
  1. PL/SQL Functions - GeeksforGeeks

    Jun 15, 2024 · How to Call Function in PL/SQL To call a function, specify the function name and any required parameters. The function will execute and return a value.

  2. PL/SQL Function - Oracle Tutorial

    How to develop a PL/SQL function and call it in various places such as an assignment statement and an SQL statement.

  3. 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 …

  4. PL/SQL Functions – Syntax, Examples & Use Cases

    Learn PL/SQL functions with syntax and real examples. Understand how functions differ from procedures. Great for Oracle beginners, developers, and interviews.

  5. CREATE FUNCTION - Oracle Help Center

    Functions are defined in PL/SQL. Therefore, this section provides some general information but refers to Oracle Database PL/SQL Language Reference for details of syntax and semantics. …

  6. Functions in PL/SQL - DEV Community

    Sep 29, 2024 · What is a Function in PL/SQL? A function in PL/SQL is a named block of code that performs a specific task, can take inputs (parameters), and returns a single value. Functions …

  7. PL/SQL Functions - Oracle PL/SQL Tutorial

    Oracle PL/SQL offers a wide range of built-in functions that can be used to perform various operations on data stored in the database. Some examples of Oracle PL/SQL functions …

  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 …

  9. Subprograms: PL SQL Procedures And Functions With Examples

    Apr 1, 2025 · We have covered topics like PL SQL subprograms – procedures and functions in detail, PL/SQL default functions like String function and Date function, differences between …

  10. Functions - PL/SQL

    The syntax for a function is as follows: [Declaration Statements] [Executable Statements] RETURN [Value] [Exception handlers] Opensource project with codes on github.