Category:PL/SQL: Difference between revisions

From Rosetta Code
Content added Content deleted
(Added Implementation template)
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Programming Language}}{{implementation|SQL}}'''PL/SQL''' (Procedural Language/Structured Query Language) is Oracle Corporation's proprietary server-based procedural extension to the [[SQL]] database language. (Some other SQL database management systems offer languages similar to PL/SQL.) Its syntax strongly resembles that of [[Ada]].
{{language|PL/SQL}}{{implementation|SQL}}'''PL/SQL''' (Procedural Language/Structured Query Language) is Oracle Corporation's proprietary server-based procedural extension to the [[SQL]] database language. (Some other SQL database management systems offer languages similar to PL/SQL.) Its syntax strongly resembles that of [[Ada]].

IBM [[SQL PL|Db2 LUW]] (for Linux, UNIX and Windows) from version 9.7 supports natively Oracle's PL/SQL. That means, you can create stored procedures in Db2 with PL/SQL language.

==Citations==
==Citations==
* [http://en.wikipedia.org/wiki/PL/SQL Wikipedia:PL/SQL]
* [http://en.wikipedia.org/wiki/PL/SQL Wikipedia:PL/SQL]
* [http://docs.oracle.com/database/122/LNPLS/toc.htm Oracle 12.2 PL/SQL Manual]

Latest revision as of 04:29, 23 April 2018

Language
PL/SQL
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using PL/SQL.
PL/SQL is an implementation of SQL. Other implementations of SQL.

PL/SQL (Procedural Language/Structured Query Language) is Oracle Corporation's proprietary server-based procedural extension to the SQL database language. (Some other SQL database management systems offer languages similar to PL/SQL.) Its syntax strongly resembles that of Ada.

IBM Db2 LUW (for Linux, UNIX and Windows) from version 9.7 supports natively Oracle's PL/SQL. That means, you can create stored procedures in Db2 with PL/SQL language.

Citations