About 81,300 results
Open links in new tab
  1. Chapter 41. PL/pgSQL — SQL Procedural Language

    Sep 25, 2025 · Executing a Command with a Single-Row Result. 41.5.4. Executing Dynamic Commands.

  2. PL/pgSQL - Wikipedia

    PL/pgSQL (Procedural Language/PostgreSQL) is a procedural programming language supported by the PostgreSQL ORDBMS. It closely resembles Oracle 's PL/SQL language.

  3. PL/pgSQL Tutorial

    You'll learn how to use the PL/pgSQL procedure language to create reusable functions and stored procedures in PostgreSQL

  4. Introduction to PostgreSQL PL/pgSQL - GeeksforGeeks

    Jul 23, 2025 · PL/pgSQL is a powerful procedural language for PostgreSQL that extends SQL functionality. It simplifies CRUD operations, enhances performance, and provides flexibility for …

  5. PL/pgSQL (en) - PostgreSQL

    In PostgreSQL, stored procedures can be created using any of these languages: SQL, Perl, Python, TCL, and PL/pgSQL. PL/pgSQL is the most frequently used language for writing …

  6. PostgreSQL PL/pgSQL - neon.com

    Mar 22, 2024 · In this section, you will learn how to develop user-defined functions and stored procedures in PostgreSQL using PL/pgSQL programming language.

  7. Documentation: 17: Chapter 41. PL/pgSQL - PostgreSQL

    PL/pgSQL — SQL Procedural Language Table of Contents 41.1. Overview 41.1.1. Advantages of Using PL/pgSQL 41.1.2. Supported Argument and Result Data Types 41.2. Structure of …

  8. PostgreSQL: Documentation: 18: 41.1. Overview

    Sep 25, 2025 · With PL/pgSQL you can group a block of computation and a series of queries inside the database server, thus having the power of a procedural language and the ease of …

  9. PL/pgSQL Syntax and Structure: A Complete Guide for Beginners

    In this post, I will explain the syntax and structure of PL/pgSQL, including how to declare variables, write control structures, and handle exceptions. By the end, you will have a clear …

  10. PostgreSQL Tutorial: PL/pgSQL - Redrock Postgres

    May 26, 2024 · This section shows you step by step how to use the PL/pgSQL to develop PostgreSQL user-defined functions and stored procedures. PL/pgSQL procedural language …