0% found this document useful (0 votes)
57 views2 pages

Procedural Extensions: Source Common Name Full Name

The document discusses procedural extensions to SQL that add functionality like control flow constructs from procedural languages. It lists many procedural languages associated with different database systems that allow writing stored procedures, including PL/SQL for Oracle, T-SQL for SQL Server, and PSQL for various databases. The SQL standard and some databases also allow integrating other languages like Java and .NET into databases through extensions.

Uploaded by

Georgie Stephen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views2 pages

Procedural Extensions: Source Common Name Full Name

The document discusses procedural extensions to SQL that add functionality like control flow constructs from procedural languages. It lists many procedural languages associated with different database systems that allow writing stored procedures, including PL/SQL for Oracle, T-SQL for SQL Server, and PSQL for various databases. The SQL standard and some databases also allow integrating other languages like Java and .NET into databases through extensions.

Uploaded by

Georgie Stephen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Procedural extensions[edit]

SQL is designed for a specific purpose: to query data contained in a relational database. SQL is
a set-based, declarative programming language, not an imperative programming
language like C or BASIC. However, extensions to Standard SQL add procedural programming
language functionality, such as control-of-flow constructs. These include:

Common
Source Full name
name

ANSI/ISO
SQL/PSM SQL/Persistent Stored Modules
Standard

Interbase / Firebird PSQL Procedural SQL

IBM DB2 SQL PL SQL Procedural Language (implements SQL/PSM)

IBM Informix SPL Stored Procedural Language

IBM Netezza NZPLSQL[20] (based on Postgres PL/pgSQL)

Invantive Procedural SQL


Invantive PSQL[21]
(implements SQL/PSM and PL/SQL)

Microsoft / Sybase T-SQL Transact-SQL

Mimer SQL SQL/PSM SQL/Persistent Stored Module (implements SQL/PSM)

MySQL SQL/PSM SQL/Persistent Stored Module (implements SQL/PSM)

MonetDB SQL/PSM SQL/Persistent Stored Module (implements SQL/PSM)

NuoDB SSP Starkey Stored Procedures


Oracle PL/SQL Procedural Language/SQL (based on Ada)

Procedural Language/PostgreSQL Structured Query


PostgreSQL PL/pgSQL
Language (implements SQL/PSM)

SAP R/3 ABAP Advanced Business Application Programming

SAP HANA SQLScript SQLScript

Sybase Watcom-SQL SQL Anywhere Watcom-SQL Dialect

Teradata SPL Stored Procedural Language

In addition to the standard SQL/PSM extensions and proprietary SQL extensions, procedural
and object-oriented programmability is available on many SQL platforms via DBMS integration with
other languages. The SQL standard defines SQL/JRT extensions (SQL Routines and Types for the
Java Programming Language) to support Java code in SQL databases. SQL Server 2005 uses
the SQLCLR (SQL Server Common Language Runtime) to host managed .NET assemblies in the
database, while prior versions of SQL Server were restricted to unmanaged extended stored
procedures primarily written in C. PostgreSQL lets users write functions in a wide variety of
languages—including Perl, Python, Tcl, JavaScript (PL/V8) and C.[22]

You might also like