Jump to content

SQL: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
The software wouldn't allow me to move the page to its "official" title, so I had to do it manually (via cut-and-paste).
No. See talk. Undid revision 590573815 by Davidfreesefan23 (talk)
Line 1: Line 1:
{{about|the database language|the IATA code|San Carlos Airport}}
#REDIRECT [[Structured Query Language]]
{{Infobox programming language
| paradigm = [[Multi-paradigm programming language|Multi-paradigm]]
| year = 1974
| designer = [[Donald D. Chamberlin]]<br />[[Raymond F. Boyce]]
| developer = [[International Organization for Standardization|ISO]]/[[International Electrotechnical Commission|IEC]]
| latest_release_version = [[SQL:2011]]
| latest_release_date = 2011
| turing-complete = No
| typing = [[Static typing|Static]], [[strong typing|strong]]
| implementations = [[List of relational database management systems|Many]]
| dialects = SQL-86, SQL-89, [[SQL-92]], [[SQL:1999]], [[SQL:2003]], [[SQL:2008]], [[SQL:2011]]
| influenced_by = [[Datalog]]
| influenced = [[Common Query Language|CQL]], [[Language Integrated Query|LINQ]], [[Salesforce Object Query Language|SOQL]], [[Windows PowerShell]],<ref name=ars>{{cite web|last=Paul|first=Ryan|title=A guided tour of the Microsoft Command Shell|url=http://arstechnica.com/business/news/2005/10/msh.ars/4|publisher=Ars Technica|accessdate=10 April 2011}}</ref> [[Java Persistence Query Language|JQPL]], [[Java Object Oriented Querying|jOOQ]]
| operating_system = [[Cross-platform]]
| website =
| fileformat =
{{Infobox file format
| child = yes
| extension = .sql
| mime = application/sql<ref>{{cite web|url=http://www.iana.org/assignments/media-types/application/sql|title=Media Type registration for application/sql|publisher=[[Internet Assigned Numbers Authority]]|date=10 April 2013|accessdate=10 April 2013}}</ref><ref>{{cite web|url=http://tools.ietf.org/html/rfc6922|title=The application/sql Media Type, RFC 6922|page=3|publisher=[[Internet Engineering Task Force]]|date=April 2013|accessdate=10 April 2013}}</ref>
| uniform type =
| owner = [[International Organization for Standardization|ISO]]/[[International Electrotechnical Commission|IEC]]
| released = {{Start date|1986|df=yes}}
| latest release version = SQL:2898
| latest release date = {{Start date and age|2011|df=yes}}
| genre = Database
| standard = ISO/IEC 9075
| free = Yes
| url =
}}
}}

'''SQL''' ({{IPAc-en|ˈ|ɛ|s|_|k|juː|_|ˈ|ɛ|l}},<ref name=learningSQL>{{ cite book |last= Beaulieu | first = Alan |title=Learning SQL |editor=Mary E Treseler |publisher=O'Reilly |location=Sebastapol, CA, USA |date=April 2009 |edition= 2nd | isbn = 978-0-596-52083-0}}</ref> or {{IPAc-en|ˈ|s|iː|k|w|ə|l}}; '''Structured Query Language'''<ref>{{cite web
| author=Encyclopedia Britannica
| title=SQL
| url=http://www.britannica.com/EBchecked/topic/569684/SQL
| accessdate=2013-04-02 }}</ref><ref>From Oxford Dictionaries: "Definition of SQL - abbreviation, Structured Query Language, an international standard for database manipulation."
{{cite web
| author=Oxford Dictionaries
| title=SQL
| url=http://oxforddictionaries.com/definition/american_english/SQL }}
</ref><ref>{{cite web
| author=IBM
| title=SQL Guide
| url=http://publib.boulder.ibm.com/infocenter/soliddb/v6r3/topic/com.ibm.swg.im.soliddb.sql.doc/doc/tables.rows.and.columns.html }}</ref><ref>From Microsoft: "Structured Query Language, invented at IBM in the 1970s. It is more commonly known by its acronym, SQL .."
{{cite web
| author=Microsoft
| title=Structured Query Language (SQL)
| url=http://msdn.microsoft.com/en-gb/library/windows/desktop/ms714670(v=vs.85).aspx }}</ref>) is a [[special-purpose programming language]] designed for managing data held in a [[relational database management system]] (RDBMS).

Originally based upon [[relational algebra]] and [[tuple relational calculus]], SQL consists of a [[data definition language]] and a [[data manipulation language]]. The scope of SQL includes data insert, query, [[Data Manipulation Language|update and delete]], [[database schema|schema]] creation and modification, and data access control. Although SQL is often described as, and to a great extent is, a [[Declarative programming|declarative language]] ([[4GL]]), it also includes [[Procedural programming|procedural]] elements.

SQL was one of the first commercial languages for [[Edgar F. Codd]]'s [[relational model]], as described in his influential 1970 paper "A Relational Model of Data for Large Shared Data Banks".<ref name="codd-relational-model">{{ cite journal | last = Codd | first = Edgar F | title = A Relational Model of Data for Large Shared Data Banks | journal = Communications of the ACM | volume = 13 | issue = 6 | pages = 377–87 | publisher = Association for Computing Machinery | month = June | year = 1970 | url = http://www.acm.org/classics/nov95/toc.html | accessdate = 2007-06-09 | doi = 10.1145/362384.362685}}</ref> Despite not entirely adhering to [[Codd's 12 rules|the relational model as described by Codd]], it became the most widely used database language.<ref name="SQL-Fundamentals" /><ref name="IBM-sql">{{cite web | title = Structured Query Language (SQL) | publisher = International Business Machines | url = http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=com.ibm.db2.udb.admin.doc/doc/c0004100.htm | date = October 27, 2006 | accessdate = 2007-06-10 }}</ref>

SQL became a [[Technical standard|standard]] of the [[American National Standards Institute]] (ANSI) in 1986, and of the [[International Organization for Standards]] (ISO) in 1987.<ref name="ISO/IEC">{{cite web | url = http://www.iso.org/iso/catalogue_detail.htm?csnumber=45498 | title = ISO/IEC 9075-1:2008: Information technology – Database languages – SQL – Part 1: Framework (SQL/Framework) }}</ref> Since then, the standard has been enhanced several times with added features. Despite these standards, code is not completely portable among different database systems, which can lead to [[vendor lock-in]]. The different makers do not perfectly adhere to the standard, for instance by adding extensions, and the standard itself is sometimes ambiguous.

== History ==

SQL was initially developed at [[IBM]] by [[Donald D. Chamberlin]], [[Donald C. Messerly]], and [[Raymond F. Boyce]] in the early 1970s.<ref>http://www.kkhsou.in/main/EVidya2/computer_science/intro_SQL.html</ref> This version, initially called ''SEQUEL'' (''Structured English Query Language''), was designed to manipulate and retrieve data stored in IBM's original quasi-relational database management system, [[IBM System R|System R]], which a group at [[IBM Almaden Research Center|IBM San Jose Research Laboratory]] had developed during the 1970s.<ref name="chamberlin-boyce-sequel">{{ cite journal | last1 = Chamberlin | first1 = Donald D | last2 = Boyce | first2 = Raymond F | title = SEQUEL: A Structured English Query Language | journal = Proceedings of the 1974 ACM SIGFIDET Workshop on Data Description, Access and Control | pages = 249–64 | publisher = Association for Computing Machinery | year = 1974 | format= PDF | url = http://www.almaden.ibm.com/cs/people/chamberlin/sequel-1974.pdf | accessdate = 2007-06-09}}</ref> The acronym SEQUEL was later changed to SQL because "SEQUEL" was a [[trademark]] of the [[United Kingdom|UK-based]] [[Hawker Siddeley]] aircraft company.<ref name = "oppel-databases">{{ cite book | last = Oppel | first = Andy | title = Databases Demystified | publisher = McGraw-Hill Osborne Media | date = February 27, 2004 | location = [[San Francisco, CA]] | pages = 90–1 | url = http://www.mhprofessional.com/product.php?cat=112&isbn=0071469605 | isbn = 0-07-146960-5}}</ref>

In the late 1970s, Relational Software, Inc. (now [[Oracle Corporation]]) saw the potential of the concepts described by Codd, Chamberlin, and Boyce and developed their own SQL-based [[RDBMS]] with aspirations of selling it to the [[United States Navy|U.S. Navy]], [[Central Intelligence Agency]], and other [[Federal government of the United States|U.S. government]] agencies. In June 1979, Relational Software, Inc. introduced the first commercially available implementation of SQL, [[Oracle Database|Oracle]] V2 (Version2) for [[VAX]] computers.

After testing SQL at customer test sites to determine the usefulness and practicality of the system, IBM began developing commercial products based on their System R prototype including System/38, [[IBM SQL/DS|SQL/DS]], and [[IBM DB2|DB2]], which were commercially available in 1979, 1981, and 1983, respectively.<ref name="IBM-history">{{cite web | title = History of IBM, 1978 | work = IBM Archives | publisher = IBM | url = http://www-03.ibm.com/ibm/history/history/year_1978.html | accessdate = 2007-06-09 }}</ref>

== Syntax ==

=== Language elements ===
[[File:SQL ANATOMY wiki.svg|thumb|400px|A chart showing several of the SQL language elements that compose a single statement]]

The SQL language is subdivided into several language elements, including:

* ''Clauses'', which are constituent components of statements and queries. (In some cases, these are optional.)<ref>ANSI/ISO/IEC International Standard (IS). Database Language SQL—Part 2: Foundation (SQL/Foundation). 1999.</ref>
* ''Expressions'', which can produce either [[scalar (computing)|scalar]] values, or [[table (database)|tables]] consisting of [[column (database)|columns]] and [[row (database)|rows]] of data.
* ''Predicates'', which specify conditions that can be evaluated to SQL [[ternary logic|three-valued logic (3VL)]] (true/false/unknown) or [[Boolean logic|Boolean]] [[truth value]]s and which are used to limit the effects of statements and queries, or to change program flow.
* ''Queries'', which retrieve the data based on specific criteria. This is an important element of ''SQL''.
* ''Statements'', which may have a persistent effect on schemata and data, or which may control transactions, program flow, connections, sessions, or diagnostics.
** SQL statements also include the [[semicolon]] (";") statement terminator. Though not required on every platform, it is defined as a standard part of the SQL grammar.
* ''[[Whitespace (computer science)|Insignificant whitespace]]'' is generally ignored in SQL statements and queries, making it easier to format SQL code for readability.

=== Operators ===

{| class="wikitable"
|-
! Operator
! Description
! Example
|-
| {{code|1= =}}
| Equal to
| {{code|1= Author = 'Alcott'}}
|-
| {{code|1= <>}}
| Not equal to (most DBMS also accept {{code|1= !=}} instead of {{code|1= <>}})
| {{code|Dept <> 'Sales'}}
|-
| {{code|1= >}}
| Greater than
| {{code|Hire_Date > '2012-01-31'}}
|-
| {{code|1= <}}
| Less than
| {{code|Bonus < 50000.00}}
|-
| {{code|1= >=}}
| Greater than or equal
| {{code|1= Dependents >= 2}}
|-
| {{code|1= <=}}
| Less than or equal
| {{code|1= Rate <= 0.05}}
|-
| {{code|1= BETWEEN}}
| Between an inclusive range
| {{code|Cost BETWEEN 100.00 AND 500.00}}
|-
| {{code|1= LIKE}}
| Match a character pattern
| {{code|First_Name LIKE 'Will%'}}
|-
| {{code|1= IN}}
| Equal to one of multiple possible values
| {{code|DeptCode IN (101, 103, 209)}}
|-
| {{code|1= IS}} ''or'' {{code|IS NOT}}
| Compare to null (missing data)
| {{code|Address IS NOT NULL}}
|-
| {{code|1= AS}}
| Used to change the table names when viewing results
| {{code|SELECT employee AS 'department1'}}
|}

==== Conditional (CASE) expressions ====

SQL has a <code>case/when/then/else/end</code> expression, which was introduced in [[SQL-92]]. In its most general form, which is called a "searched case" in the SQL standard, it works like [[Conditional (programming)#Else if|else if]] in other programming languages:

<source lang="sql">
CASE WHEN n > 0
THEN 'positive'
WHEN n < 0
THEN 'negative'
ELSE 'zero'
END
</source>

The <code>WHEN</code> conditions are tested in the order in which they appear in the source. If no <code>ELSE</code> expression is specified, it defaults to <code>ELSE NULL</code>. An abbreviated syntax exists mirroring [[switch statement]]s; it is called "simple case" in the SQL standard:

<source lang="sql">
CASE n WHEN 1
THEN 'one'
WHEN 2
THEN 'two'
ELSE 'i cannot count that high'
END
</source>

This syntax uses implicit equality comparisons, with [[SQL CASE|the usual caveats for comparing with NULL]].

For the Oracle-SQL dialect, the latter can be shortened to an equivalent <code>DECODE</code> construct:

<source lang="oracle11">
SELECT DECODE(n, 1, 'one',
2, 'two',
'i cannot count that high')
FROM some_table;
</source>

The last value is the default; if none is specified, it also defaults to <code>NULL</code>.
However, unlike the standard's "simple case", Oracle's <code>DECODE</code> considers two <code>NULL</code>s to be equal with each other.<ref>{{cite web|url=http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions040.htm |title=DECODE |publisher=Docs.oracle.com |date= |accessdate=2013-06-14}}</ref>

=== Queries ===

The most common operation in SQL is the query, which is performed with the declarative <code>[[Select (SQL)|SELECT]]</code> statement. <code>SELECT</code> retrieves data from one or more [[Table (database)|table]]s, or expressions. Standard <code>SELECT</code> statements have no persistent effects on the database. Some non-standard implementations of <code>SELECT</code> can have persistent effects, such as the <code>SELECT INTO</code> syntax that exists in some databases.<ref name="ms-sql-select-into">{{ cite book | chapter = Transact-SQL Reference | title = SQL Server Language Reference | series = SQL Server 2005 Books Online | publisher = Microsoft | date = 2007-09-15 | url = http://msdn2.microsoft.com/en-us/library/ms188029(SQL.90).aspx | accessdate = 2007-06-17 }}</ref>

Queries allow the user to describe desired data, leaving the [[Database management system|database management system (DBMS)]] responsible for [[query plan|planning]], [[query optimizer|optimizing]], and performing the physical operations necessary to produce that result as it chooses.

A query includes a list of columns to be included in the final result immediately following the <code>SELECT</code> keyword. An asterisk ("<code>*</code>") can also be used to specify that the query should return all columns of the queried tables. <code>SELECT</code> is the most complex statement in SQL, with optional keywords and clauses that include:

* The <code>[[From (SQL)|FROM]]</code> clause which indicates the table(s) from which data is to be retrieved. The <code>FROM</code> clause can include optional <code>[[Join (SQL)|JOIN]]</code> subclauses to specify the rules for joining tables.
* The <code>[[Where (SQL)|WHERE]]</code> clause includes a comparison predicate, which restricts the rows returned by the query. The <code>WHERE</code> clause eliminates all rows from the result set for which the comparison predicate does not evaluate to True.
* The <code>GROUP BY</code> clause is used to project rows having common values into a smaller set of rows. <code>GROUP BY</code> is often used in conjunction with SQL aggregation functions or to eliminate duplicate rows from a result set. The <code>WHERE</code> clause is applied before the <code>GROUP BY</code> clause.
* The <code>[[Having (SQL)|HAVING]]</code> clause includes a predicate used to filter rows resulting from the <code>GROUP BY</code> clause. Because it acts on the results of the <code>GROUP BY</code> clause, aggregation functions can be used in the <code>HAVING</code> clause predicate.
* The <code>[[Order by (SQL)|ORDER BY]]</code> clause identifies which columns are used to sort the resulting data, and in which direction they should be sorted (options are ascending or descending). Without an <code>ORDER BY</code> clause, the order of rows returned by an SQL query is undefined.

The following is an example of a <code>SELECT</code> query that returns a list of expensive books. The query retrieves all rows from the ''Book'' table in which the ''price'' column contains a value greater than 100.00. The result is sorted in ascending order by ''title''. The asterisk (*) in the ''select list'' indicates that all columns of the ''Book'' table should be included in the result set.

<source lang="sql">
SELECT *
FROM Book
WHERE price > 100.00
ORDER BY title;
</source>

The example below demonstrates a query of multiple tables, grouping, and aggregation, by returning a list of books and the number of authors associated with each book.

<source lang="sql">
SELECT Book.title AS Title,
count(*) AS Authors
FROM Book
JOIN Book_author
ON Book.isbn = Book_author.isbn
GROUP BY Book.title;
</source>

Example output might resemble the following:

Title Authors
---------------------- -------
SQL Examples and Guide 4
The Joy of SQL 1
An Introduction to SQL 2
Pitfalls of SQL 1

Under the precondition that ''isbn'' is the only common column name of the two tables and that a column named ''title'' only exists in the ''Books'' table, the above query could be rewritten in the following form:

<source lang="sql">
SELECT title,
count(*) AS Authors
FROM Book
NATURAL JOIN Book_author
GROUP BY title;
</source>

However, many vendors either do not support this approach, or require certain column naming conventions in order for natural joins to work effectively.

SQL includes operators and functions for calculating values on stored values. SQL allows the use of expressions in the ''select list'' to project data, as in the following example which returns a list of books that cost more than 100.00 with an additional ''sales_tax'' column containing a sales tax figure calculated at 6% of the ''price''.

<source lang="sql">
SELECT isbn,
title,
price,
price * 0.06 AS sales_tax
FROM Book
WHERE price > 100.00
ORDER BY title;
</source>

==== Subqueries ====

Queries can be nested so that the results of one query can be used in another query via a relational operator or aggregation function. A nested query is also known as a ''subquery''. While joins and other table operations provide computationally superior (i.e. faster) alternatives in many cases, the use of subqueries introduces a hierarchy in execution which can be useful or necessary. In the following example, the aggregation function <code>AVG</code> receives as input the result of a subquery:

<source lang="sql">
SELECT isbn,
title,
price
FROM Book
WHERE price < (SELECT AVG(price) FROM Book)
ORDER BY title;
</source>

A subquery can use values from the outer query, in which case it is known as a [[correlated subquery]].

Since 1999 the SQL standard allows named subqueries called [[common table expression]] (named and designed after the IBM DB2 version 2 implementation; Oracle calls these [[subquery factoring]]). CTEs can be also be [[recursive]] by referring to themselves; [[Hierarchical and recursive queries in SQL|the resulting mechanism]] allows tree or graph traversals (when represented as relations), and more generally [[fixpoint]] computations.

==== Null and three-valued logic (3VL) ====
{{main|Null (SQL)}}

The concept of [[Null (SQL)|Null]] was introduced into SQL to handle missing information in the relational model. The word <code>NULL</code> is a reserved keyword in SQL, used to identify the Null special marker. Comparisons with Null, for instance equality (=) in WHERE clauses, results in an Unknown truth value. In SELECT statements SQL returns only results for which the WHERE clause returns a value of True; i.e. it excludes results with values of False and also excludes those whose value is Unknown.

Along with True and False, the Unknown resulting from direct comparisons with Null thus brings a fragment of [[three-valued logic]] to SQL. The truth tables SQL uses for AND, OR, and NOT correspond to a common fragment of the Kleene and Lukasiewicz three-valued logic (which differ in their definition of implication, however SQL defines no such operation).<ref name="Klein">{{ cite doi|10.1007/3-540-36596-6_7}}</ref>

{| border="0"
|-
| valign="top" |
{| class="wikitable"
|-
! colspan=2 rowspan=2 | p AND q
! colspan=3 | p
|-
! True
! False
! Unknown
|-
! rowspan=3 | q || True
| True
| False
| Unknown
|-
! False
| False
| False
| False
|-
! Unknown
| Unknown
| False
| Unknown
|}
| valign="top" |
{| class="wikitable"
|-
! colspan=2 rowspan=2 | p OR q
! colspan=3 | p
|-
! True
! False
! Unknown
|-
! rowspan=3 | q || True
| True
| True
| True
|-
! False
| True
| False
| Unknown
|-
! Unknown
| True
| Unknown
| Unknown
|}
|}

{| border="0"
|-
| valign="top" |
{| class="wikitable"
|-
! q
! NOT q
|-
! True
| False
|-
! False
| True
|-
! Unknown
| Unknown
|}
| valign="top" |
{| class="wikitable"
|-
! colspan=2 rowspan=2 | p = q
! colspan=3 | p
|-
! True
! False
! Unknown
|-
! rowspan=3 | q || True
| True
| False
| Unknown
|-
! False
| False
| True
| Unknown
|-
! Unknown
| Unknown
| Unknown
| Unknown
|}
|}

There are however disputes about the semantic interpretation of Nulls in SQL because of its treatment outside direct comparisons. As seen in the table above direct equality comparisons between two NULLs in SQL (e.g. <code>NULL = NULL</code>) returns a truth value of Unknown. This is in line with the interpretation that Null does not have a value (and is not a member of any data domain) but is rather a placeholder or "mark" for missing information. However, the principle that two Nulls aren't equal to each other is effectively violated in the SQL specification for the <code>UNION</code> and <code>INTERSECT</code> operators, which do identify nulls with each other.<ref name="Meyden"/> Consequently, these set operations in SQL may produce results not representing sure information, unlike operations involving explicit comparisons with NULL (e.g. those in a <code>WHERE</code> clause discussed above). In Codd's 1979 proposal (which was basically adopted by SQL92) this semantic inconsistency is rationalized by arguing that removal of duplicates in set operations happens "at a lower level of detail than equality testing in the evaluation of retrieval operations."<ref name="Klein"/> However, computer science professor Ron van der Meyden concluded that "The inconsistencies in the SQL standard mean that it is not possible to ascribe any intuitive logical semantics to the treatment of nulls in SQL."<ref name="Meyden">Ron van der Meyden, "[http://books.google.com/books?id=gF0b85IuqQwC&pg=PA344 Logical approaches to incomplete information: a survey]" in Chomicki, Jan; Saake, Gunter (Eds.) ''Logics for Databases and Information Systems'', Kluwer Academic Publishers ISBN 978-0-7923-8129-7, p. 344; [http://www.cse.unsw.edu.au/~meyden/research/indef-review.ps PS preprint] (note: page numbering differs in preprint from the published version)</ref>

Additionally, since SQL operators return Unknown when comparing anything with Null directly, SQL provides two Null-specific comparison predicates: <code>IS NULL</code> and <code>IS NOT NULL</code> test whether data is or is not Null.<ref name="SQL2003-Part2-Sec87">{{ cite book | last =ISO/IEC | title =ISO/IEC 9075-2:2003, "SQL/Foundation" | publisher =ISO/IEC | nopp =true }}</ref> [[Universal quantification]] is not explicitly supported by SQL, and must be worked out as a negated [[existential quantification]].<ref>M. Negri, G. Pelagatti, L. Sbattella (1989) ''[http://portal.acm.org/citation.cfm?id=63224.68822&coll=GUIDE&dl=GUIDE Semantics and problems of universal quantification in SQL]''.</ref><ref>Fratarcangeli, Claudio (1991). ''Technique for universal quantification in SQL''. Retrieved from [http://portal.acm.org/citation.cfm?id=126482.126484&coll=GUIDE&dl=GUIDE&CFID=5934371&CFTOKEN=55309005 ACM.org.]</ref><ref name="kawash">Kawash, Jalal (2004) ''Complex quantification in Structured Query Language (SQL): a tutorial using relational calculus'' - Journal of Computers in Mathematics and Science Teaching ISSN 0731-9258 Volume 23, Issue 2, 2004 AACE Norfolk, Virginia. Retrieved from [http://www.thefreelibrary.com/Complex+quantification+in+Structured+Query+Language+(SQL):+a+tutorial...-a0119901477 Thefreelibrary.com].</ref> There is also the "<row value expression> IS DISTINCT FROM <row value expression>" infixed comparison operator which returns TRUE unless both operands are equal or both are NULL. Likewise, IS NOT DISTINCT FROM is defined as "NOT (<row value expression> IS DISTINCT FROM <row value expression>)". [[SQL:1999]] also introduced <code>BOOLEAN</code> type variables, which according to the standard can also hold Unknown values. In practice, a number of systems (e.g. [[PostgreSQL]]) implement the BOOLEAN Unknown as a BOOLEAN NULL.

=== Data manipulation ===

The [[Data Manipulation Language]] (DML) is the subset of SQL used to add, update and delete data:
* <code>[[Insert (SQL)|INSERT]]</code> adds rows (formally [[tuple]]s) to an existing table, e.g.:

<source lang="sql">
INSERT INTO example
(field1, field2, field3)
VALUES
('test', 'N', NULL);
</source>

* <code>[[Update (SQL)|UPDATE]]</code> modifies a set of existing table rows, e.g.:

<source lang="sql">
UPDATE example
SET field1 = 'updated value'
WHERE field2 = 'N';
</source>

* <code>[[Delete (SQL)|DELETE]]</code> removes existing rows from a table, e.g.:

<source lang="sql">
DELETE FROM example
WHERE field2 = 'N';
</source>

* <code>[[Merge (SQL)|MERGE]]</code> is used to combine the data of multiple tables. It combines the <code>INSERT</code> and <code>UPDATE</code> elements. It is defined in the SQL:2003 standard; prior to that, some databases provided similar functionality via different syntax, sometimes called "[[upsert]]".

<source lang="sql">
MERGE INTO table_name USING table_reference ON (condition)
WHEN MATCHED THEN
UPDATE SET column1 = value1 [, column2 = value2 ...]
WHEN NOT MATCHED THEN
INSERT (column1 [, column2 ...]) VALUES (value1 [, value2 ...
</source>

=== Transaction controls ===

Transactions, if available, wrap DML operations:

* <code>START TRANSACTION</code> (or <code>BEGIN WORK</code>, or <code>BEGIN TRANSACTION</code>, depending on SQL dialect) marks the start of a [[database transaction]], which either completes entirely or not at all.
* <code>SAVE TRANSACTION</code> (or <code>SAVEPOINT</code>) saves the state of the database at the current point in transaction

<source lang="sql">
CREATE TABLE tbl_1(id int);
INSERT INTO tbl_1(id) VALUES(1);
INSERT INTO tbl_1(id) VALUES(2);
COMMIT;
UPDATE tbl_1 SET id=200 WHERE id=1;
SAVEPOINT id_1upd;
UPDATE tbl_1 SET id=1000 WHERE id=2;
ROLLBACK to id_1upd;
SELECT id from tbl_1;
</source>

* <code>[[Commit (SQL)|COMMIT]]</code> causes all data changes in a transaction to be made permanent.
* <code>[[Rollback (SQL)|ROLLBACK]]</code> causes all data changes since the last <code>COMMIT</code> or <code>ROLLBACK</code> to be discarded, leaving the state of the data as it was prior to those changes.

Once the <code>COMMIT</code> statement completes, the transaction's changes cannot be rolled back.

<code>COMMIT</code> and <code>ROLLBACK</code> terminate the current transaction and release data locks. In the absence of a <code>START TRANSACTION</code> or similar statement, the semantics of SQL are implementation-dependent.
The following example shows a classic transfer of funds transaction, where money is removed from one account and added to another. If either the removal or the addition fails, the entire transaction is rolled back.

<source lang="sql">
START TRANSACTION;
UPDATE Account SET amount=amount-200 WHERE account_number=1234;
UPDATE Account SET amount=amount+200 WHERE account_number=2345;

IF ERRORS=0 COMMIT;
IF ERRORS<>0 ROLLBACK;
</source>

=== Data definition ===

The [[Data Definition Language]] (DDL) manages table and index structure. The most basic items of DDL are the <code>CREATE</code>, <code>ALTER</code>, <code>RENAME</code>, <code>DROP</code> and <code>TRUNCATE</code> statements:

* <code>[[Create (SQL)|CREATE]]</code> creates an object (a table, for example) in the database, e.g.:

<source lang="sql">
CREATE TABLE example(
field1 INTEGER,
field2 VARCHAR(50),
field3 DATE NOT NULL,
PRIMARY KEY (field1, field2)
);
</source>

* <code>[[Alter (SQL)|ALTER]]</code> modifies the structure of an existing object in various ways, for example, adding a column to an existing table or a constraint, e.g.:

<source lang="sql">
ALTER TABLE example ADD field4 NUMBER(3) NOT NULL;
</source>

* <code>[[Truncate (SQL)|TRUNCATE]]</code> deletes all data from a table in a very fast way, deleting the data inside the table and not the table itself. It usually implies a subsequent COMMIT operation, i.e., it cannot be rolled back (data is not written to the logs for rollback later, unlike DELETE).

<source lang="sql">
TRUNCATE TABLE example;
</source>

* <code>[[Drop (SQL)|DROP]]</code> deletes an object in the database, usually irretrievably, i.e., it cannot be rolled back, e.g.:

<source lang="sql">
DROP TABLE example;
</source>

=== Data types ===

Each column in an SQL table declares the type(s) that column may contain. ANSI SQL includes the following data types.<ref name="SQL1992">{{ cite journal | url = http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt | title = Information Technology: Database Language SQL | publisher = CMU }} (proposed revised text of DIS 9075)].</ref>

==== Character strings ====

* <code>CHARACTER(<var>n</var>)</code> or <code>CHAR(<var>n</var>)</code>: fixed-width <var>n</var>-character string, padded with spaces as needed
* <code>CHARACTER VARYING(<var>n</var>)</code> or <code>VARCHAR(<var>n</var>)</code>: variable-width string with a maximum size of <var>n</var> characters
* <code>NATIONAL CHARACTER(<var>n</var>)</code> or <code>NCHAR(<var>n</var>)</code>: fixed width string supporting an international character set
* <code>NATIONAL CHARACTER VARYING(<var>n</var>)</code> or <code>NVARCHAR(<var>n</var>)</code>: variable-width <code>NCHAR</code> string

==== Bit strings ====

* <code>BIT(<var>n</var>)</code>: an array of <var>n</var> bits
* <code>BIT VARYING(<var>n</var>)</code>: an array of up to <var>n</var> bits

==== Numbers ====

* <code>INTEGER</code> and <code>SMALLINT</code>
* <code>FLOAT</code>, <code>REAL</code> and <code>DOUBLE PRECISION</code>
* <code>NUMERIC(<var>precision</var>, <var>scale</var>)</code> or <code>DECIMAL(<var>precision</var>, <var>scale</var>)</code>

For example, the number 123.45 has a precision of 5 and a scale of 2. The <var>precision</var> is a positive integer that determines the number of significant digits in a particular radix (binary or decimal). The <var>scale</var> is a non-negative integer. A scale of 0 indicates that the number is an integer. For a decimal number with scale S, the exact numeric value is the integer value of the significant digits divided by 10<sup>S</sup>.

SQL provides a function to round numerics or dates, called <code>TRUNC</code> (in Informix, DB2, PostgreSQL, Oracle and MySQL) or <code>ROUND</code> (in Informix, SQLite, Sybase, Oracle, PostgreSQL and Microsoft SQL Server)<ref name="Jones 127">Arie Jones, Ryan K. Stephens, Ronald R. Plew, Alex Kriegel, Robert F. Garrett (2005), ''SQL Functions Programmer's Reference''. Wiley, 127 pages.</ref>

==== Date and time ====

* <code>DATE</code>: for date values (e.g. <code>2011-05-03</code>)
* <code>TIME</code>: for time values (e.g. <code>15:51:36</code>). The granularity of the time value is usually a ''tick'' (100 nanoseconds).
* <code>TIME WITH TIME ZONE</code> or <code>TIMETZ</code>: the same as <code>TIME</code>, but including details about the time zone in question.
* <code>TIMESTAMP</code>: This is a <code>DATE</code> and a <code>TIME</code> put together in one variable (e.g. <code>2011-05-03 15:51:36</code>).
* <code>TIMESTAMP WITH TIME ZONE</code> or <code>TIMESTAMPTZ</code>: the same as <code>TIMESTAMP</code>, but including details about the time zone in question.

SQL provides several functions for generating a date / time variable out of a date / time string (<code>TO_DATE</code>, <code>TO_TIME</code>, <code>TO_TIMESTAMP</code>), as well as for extracting the respective members (seconds, for instance) of such variables. The current system date / time of the database server can be called by using functions like <code>NOW</code>.

=== Data control ===

The [[Data Control Language]] (DCL) authorizes users to access and manipulate data.
Its two main statements are:

* <code>GRANT</code> authorizes one or more users to perform an operation or a set of operations on an object.
* <code>REVOKE</code> eliminates a grant, which may be the default grant.

Example:

<source lang="sql">
GRANT SELECT, UPDATE
ON example
TO some_user, another_user;

REVOKE SELECT, UPDATE
ON example
FROM some_user, another_user;
</source>

== Procedural extensions ==

SQL is designed for a specific purpose: to query [[data]] contained in a [[relational database]]. SQL is a [[Set (computer science)|set]]-based, [[Declarative programming|declarative]] query language, not an [[Imperative programming|imperative language]] like [[C (programming language)|C]] or [[BASIC programming language|BASIC]]. However, there are extensions to Standard SQL which add [[procedural programming language]] functionality, such as control-of-flow constructs. These include:

{| class="wikitable"
|-
! Source
! Common name
! Full name
|-
| ANSI/ISO Standard
| [[SQL/PSM]]
| SQL/Persistent Stored Modules
|-
| [[Interbase]] / [[Firebird (database server)|Firebird]]
| [[Procedural SQL|PSQL]]
| Procedural SQL
|-
| [[IBM DB2]]
| [[SQL PL]]
| SQL Procedural Language (implements SQL/PSM)
|-
| [[IBM Informix]]
| [[Stored Procedural Language|SPL]]
| Stored Procedural Language
|-
| [[Microsoft]] / [[Sybase]]
| [[Transact-SQL|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)
|-
| [[Oracle Database|Oracle]]
| [[PL/SQL]]
| Procedural Language/SQL (based on [[Ada (programming language)|Ada]])
|-
| [[PostgreSQL]]
| [[PL/pgSQL]]
| Procedural Language/PostgreSQL (based on Oracle PL/SQL)
|-
| [[PostgreSQL]]
| [[PL/PSM]]
| Procedural Language/Persistent Stored Modules (implements SQL/PSM)
|-
| [[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 programming language|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 (programming language)|Java]] code in SQL databases. [[SQL Server 2005]] uses the [[SQLCLR]] (SQL Server Common Language Runtime) to host managed [[Microsoft .NET|.NET]] assemblies in the database, while prior versions of SQL Server were restricted to using unmanaged extended stored procedures that were primarily written in C. PostgreSQL allows functions to be written in a wide variety of languages including [[Perl]], [[Python (programming language)|Python]], [[Tcl]], and C.<ref>{{cite web | last = PostgreSQL contributors | title = PostgreSQL server programming | work = PostgreSQL 9.1 official documentation | publisher = postgresql.org | year = 2011 | url = http://www.postgresql.org/docs/9.1/static/server-programming.html | accessdate = 2012-03-09 }}</ref>

== Criticism ==
SQL deviates in several ways from its theoretical foundation, the [[relational model]] and its [[tuple relational calculus|tuple calculus]]. In that model, a table is a [[set (mathematics)|set]] of tuples, while in SQL, tables and query results are [[list (computing)|list]]s of rows: the same row may occur multiple times, and the order of rows can be employed in queries (e.g. in the LIMIT clause). Furthermore, additional features (such as NULL and views) were introduced without founding them directly on the relational model, which makes them more difficult to interpret.

Critics argue that SQL should be replaced with a language that strictly returns to the original foundation: for example, see ''[[The Third Manifesto]]''. Other critics suggest that [[Datalog]] has two advantages over SQL: it has a cleaner semantics which facilitates program understanding and maintenance, and it is more expressive, in particular for recursive queries.<ref>http://lbd.udc.es/jornadas2011/actas/PROLE/PROLE/S5/13_article.pdf</ref>

Another criticism is that SQL implementations are incompatible between vendors. In particular date and time syntax, string concatenation, <code>NULL</code>s, and comparison [[case sensitivity]] vary from vendor to vendor. A particular exception is [[PostgreSQL]], which strives for compliance.<ref>{{cite web | last = PostgreSQL contributors | title = About PostgreSQL | work = PostgreSQL 9.1 official website | publisher = PostgreSQL Global Development Group | year = 2012 | url = http://www.postgresql.org/about/ | quote = PostgreSQL prides itself in standards compliance. Its SQL implementation strongly conforms to the ANSI-SQL:2008 standard | accessdate = March 9, 2012 }}</ref>

Popular implementations of SQL commonly omit support for basic features of Standard SQL, such as the <code>DATE</code> or <code>TIME</code> data types. The most obvious such examples, and incidentally the most popular commercial and proprietary SQL DBMSs, are Oracle (whose <code>DATE</code> behaves as <code>DATETIME</code>,<ref name = "Ora DATE">{{ cite book | first1 = Diana | last1 = Lorentz | first2 = Mary Beth | last2 = Roeser | first3 = Sundeep | last3 = Abraham | first4 = Angela | last4 = Amor | first5 = Geeta | last5 = Arora | first6 = Vikas | last6 = Arora | first7 = Lance | last7 = Ashdown | first8 = Hermann | last8 = Baer | first9 = Shrikanth | last9 = Bellamkonda | display-authors = 9 | series = Oracle Database Documentation Library | publisher = Oracle USA, Inc | place = Redwood City, CA | title = Oracle Database SQL Language Reference 11g Release 2 (11.2) | chapter = Basic Elements of Oracle SQL: Data Types | origyear = 1996 | date = October 2010 | accessdate = December 29, 2010 | url = http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#sthref154 | quote = For each <code>DATE</code> value, Oracle stores the following information: century, year, month, date, hour, minute, and second }}</ref><ref name = "Ora DATETIME">{{ cite book | first1 = Diana | last1 = Lorentz | first2 = Mary Beth | last2 = Roeser | first3 = Sundeep | last3 = Abraham | first4 = Angela | last4 = Amor | first5 = Geeta | last5 = Arora | first6 = Vikas | last6 = Arora | first7 = Lance | last7 = Ashdown | first8 = Hermann | last8 = Baer | first9 = Shrikanth | last9 = Bellamkonda | display-authors = 9 | series = Oracle Database Documentation Library | publisher = Oracle USA, Inc | place = Redwood City, CA | title = Oracle Database SQL Language Reference 11g Release 2 (11.2) | chapter = Basic Elements of Oracle SQL: Data Types | origyear = 1996 | date = October 2010 | accessdate = December 29, 2010 | url = http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#sthref154 | quote = The datetime data types are <code>DATE</code>... }}</ref> and lacks a <code>TIME</code> type)<ref name = "Ora TIME">{{ cite book | first1 = Diana | last1 = Lorentz | first2 = Mary Beth | last2 = Roeser | first3 = Sundeep | last3 = Abraham | first4 = Angela | last4 = Amor | first5 = Geeta | last5 = Arora | first6 = Vikas | last6 = Arora | first7 = Lance | last7 = Ashdown | first8 = Hermann | last8 = Baer | first9 = Shrikanth | last9 = Bellamkonda | display-authors = 9 | series = Oracle Database Documentation Library | publisher = Oracle USA, Inc | place = Redwood City, CA | title = Oracle Database SQL Language Reference 11g Release 2 (11.2) | chapter = Basic Elements of Oracle SQL: Data Types | origyear = 1996 | date = October 2010 | accessdate = December 29, 2010 | url = http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#i54335 | quote = Do not define columns with the following SQL/DS and DB2 data types, because they have no corresponding Oracle data type:... <code>TIME</code> }}</ref> and MS SQL Server (before the 2008 version). As a result, SQL code can rarely be ported between database systems without modifications.

There are several reasons for this lack of portability between database systems:

* The complexity and size of the SQL standard means that most implementors do not support the entire standard.
* The standard does not specify database behavior in several important areas (e.g. [[index (database)|indexes]], file storage...), leaving implementations to decide how to behave.
* The SQL standard precisely specifies the syntax that a conforming database system must implement. However, the standard's specification of the semantics of language constructs is less well-defined, leading to ambiguity.
* Many database vendors have large existing customer bases; where the SQL standard conflicts with the prior behavior of the vendor's database, the vendor may be unwilling to break [[backward compatibility]].
* Market forces can encourage software vendors to create incompatibilities with other vendors' products, as it provides a strong incentive for their existing users to remain loyal (see [[vendor lock-in]]).{{Citation needed|date=December 2012}}

== Standardization ==

SQL was adopted as a standard by the [[American National Standards Institute]] (ANSI) in 1986 as SQL-86<ref>{{ cite book | url = http://special.lib.umn.edu/findaid/xml/cbi00168.xml | publisher = American National Standards Institute | title = X3H2 Records, 1978–95 | chapter = Finding Aid }}</ref> and the [[International Organization for Standardization]] (ISO) in 1987. Nowadays the standard is subject to continuous improvement by the Joint Technical Committee ''ISO/IEC JTC 1, Information technology, Subcommittee SC 32, Data management and interchange'' which affiliate to [[International Organization for Standardization|ISO]] as well as [[International Electrotechnical Commission|IEC]]. It is commonly denoted by the pattern: ''ISO/IEC 9075-n:yyyy Part n: title'', or, as a shortcut, ''ISO/IEC 9075''.

''ISO/IEC 9075'' is complemented by ''ISO/IEC 13249: SQL Multimedia and Application Packages'' ([[SQL/MM]]) which defines SQL based interfaces and packages to widely spread applications like video, audio and [[Georeference|spatial data]].

Until 1996, the [[National Institute of Standards and Technology]] (NIST) data management standards program certified SQL DBMS compliance with the SQL standard. Vendors now self-certify the compliance of their products.<ref>{{cite web | last = Doll | first = Shelley | title = Is SQL a Standard Anymore? | work = TechRepublic's Builder.com | publisher = TechRepublic | date = June 19, 2002 | url = http://articles.techrepublic.com.com/5100-10878_11-1046268.html | accessdate = 2010-01-07 |archiveurl=http://archive.is/lWgJb|archivedate=2013-01-02}}</ref>

The original SQL standard declared that the official pronunciation for SQL is "es queue el".<ref name="SQL-Fundamentals">{{cite web | last = Chapple | first = Mike | title = SQL Fundamentals | work = Databases | publisher = About.com | url = http://databases.about.com/od/sql/a/sqlfundamentals.htm | accessdate = 2009-01-28 }}</ref> Many English-speaking database professionals still use the original<ref>{{ cite book | title=Understanding the New SQL: A Complete Guide | last=Melton | first=Jim | coauthors=Alan R Simon | year=1993 | publisher=Morgan Kaufmann | isbn=1-55860-245-3 | page=536 | chapter= 1.2. What is SQL? | quote = SQL (correctly pronounced "ess cue ell," instead of the somewhat common "sequel")...}}</ref> pronunciation {{IPA|/ˈsiːkwəl/}} (like the word "sequel"), including Donald Chamberlin himself.<ref>{{cite web|last=Gillespie|first=Patrick|url=http://patorjk.com/blog/2012/01/26/pronouncing-sql-s-q-l-or-sequel/|work=Pronouncing SQL: S-Q-L or Sequel?|title=Pronouncing SQL: S-Q-L or Sequel?|accessdate=12 February 2012}}</ref>

The SQL standard has gone through a number of revisions:

{| class=wikitable
|-
! Year
! Name
! Alias
! Comments
|-
| 1986
| SQL-86
| SQL-87
| First formalized by ANSI.
|-
| 1989
| SQL-89
| [[Federal Information Processing Standard|FIPS]] 127-1
| Minor revision, in which the major addition were integrity constraints. Adopted as FIPS 127-1.
|-
| 1992
| [[SQL-92]]
| SQL2, FIPS 127-2
| Major revision (ISO 9075), ''Entry Level'' SQL-92 adopted as FIPS 127-2.
|-
| 1999
| [[SQL:1999]]
| SQL3
| Added regular expression matching, [[hierarchical and recursive queries in SQL|recursive queries]] (e.g. [[transitive closure]]), [[Database trigger|triggers]], support for procedural and control-of-flow statements, non-scalar types, and some object-oriented features (e.g. [[structured type]]s). Support for embedding SQL in Java ([[SQL/OLB]]) and vice-versa ([[SQL/JRT]]).
|-
| 2003
| [[SQL:2003]]
| SQL 2003
| Introduced [[XML]]-related features ([[SQL/XML]]), ''window functions'', standardized sequences, and columns with auto-generated values (including identity-columns).
|-
| 2006
| [[SQL:2006]]
| SQL 2006
| ISO/IEC 9075-14:2006 defines ways in which SQL can be used in conjunction with XML. It defines ways of importing and storing XML data in an SQL database, manipulating it within the database and publishing both XML and conventional SQL-data in XML form. In addition, it enables applications to integrate into their SQL code the use of [[XQuery]], the XML Query Language published by the World Wide Web Consortium ([[W3C]]), to concurrently access ordinary SQL-data and XML documents.<ref name="SQLXML2006">{{ cite book | title=SQL/XML:2006 - Evaluierung der Standardkonformität ausgewählter Datenbanksysteme | last=Wagner | first=Michael | coauthors= | year=2010 | publisher=Diplomica Verlag | isbn=3-8366-9609-6 | page=100 | chapter= | quote=}}</ref>
|-
| 2008
| [[SQL:2008]]
| SQL 2008
| Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers. Adds the TRUNCATE statement.<ref name="iablog.sybase.com-paulley">{{ cite journal | date = July 2008 | title = SQL:2008 now an approved ISO international standard | publisher = Sybase | url=http://iablog.sybase.com/paulley/2008/07/sql2008-now-an-approved-iso-international-standard/ }}</ref>
|-
| 2011
| [[SQL:2011]]
|
|
|}

Interested parties may purchase SQL standards documents from ISO, IEC or ANSI. A draft of SQL:2008 is freely available as a [[ZIP (file format)|zip]] archive.<ref>{{ cite journal | url = http://www.wiscorp.com/sql200n.zip | format = Zip | title = SQL:2008 draft | publisher = Whitemarsh Information Systems Corporation }}</ref>

The SQL standard is divided into nine parts.

* ISO/IEC 9075-1:2011 Part 1: ''Framework'' (SQL/Framework). It provides logical concepts.
* ISO/IEC 9075-2:2011 Part 2: ''Foundation'' (SQL/Foundation). It contains the most central elements of the language and consists of both ''mandatory and optional'' features.
* ISO/IEC 9075-3:2008 Part 3: ''Call-Level Interface'' ([[SQL/CLI]]). It defines interfacing components (structures, procedures, variable bindings) that can be used to execute SQL statements from applications written in Ada, C respectively C++, COBOL, Fortran, MUMPS, Pascal or PL/I. (For Java see part 10.) SQL/CLI is defined in such a way that SQL statements and SQL/CLI procedure calls are treated as separate from the calling application's source code. [[Open Database Connectivity]] is a well-known superset of SQL/CLI. This part of the standard consists solely of ''mandatory'' features.
* ISO/IEC 9075-4:2011 Part 4: ''Persistent Stored Modules'' ([[SQL/PSM]]) It standardizes procedural extensions for SQL, including flow of control, condition handling, statement condition signals and resignals, cursors and local variables, and assignment of expressions to variables and parameters. In addition, SQL/PSM formalizes declaration and maintenance of persistent database language routines (e.g., "stored procedures"). This part of the standard consists solely of ''optional'' features.
* ISO/IEC 9075-9:2008 Part 9: ''Management of External Data'' ([[SQL/MED]]). It provides extensions to SQL that define foreign-data wrappers and datalink types to allow SQL to manage external data. External data is data that is accessible to, but not managed by, an SQL-based DBMS. This part of the standard consists solely of ''optional'' features.
* ISO/IEC 9075-10:2008 Part 10: ''Object Language Bindings'' ([[SQL/OLB]]). It defines the syntax and semantics of [[SQLJ]], which is SQL embedded in Java (see also part 3). The standard also describes mechanisms to ensure binary portability of SQLJ applications, and specifies various Java packages and their contained classes. This part of the standard consists solely of optional features, as opposed to SQL/OLB [[JDBC]], which is not part of the SQL standard, which defines an [[API]].{{citation needed|date=February 2013}}
* ISO/IEC 9075-11:2011 Part 11: ''Information and Definition Schemas'' ([[SQL/Schemata]]). It defines the Information Schema and Definition Schema, providing a common set of tools to make SQL databases and objects self-describing. These tools include the SQL object identifier, structure and integrity constraints, security and authorization specifications, features and packages of ISO/IEC 9075, support of features provided by SQL-based DBMS implementations, SQL-based DBMS implementation information and sizing items, and the values supported by the DBMS implementations.<ref name="ISO/IEC 9075-11:2008">{{ cite journal | title = ISO/IEC 9075-11:2008: Information and Definition Schemas (SQL/Schemata) | page = 1 | year = 2008 }}</ref> This part of the standard contains both ''mandatory and optional'' features.
* ISO/IEC 9075-13:2008 Part 13: ''SQL Routines and Types Using the Java Programming Language'' ([[SQL/JRT]]). It specifies the ability to invoke static Java methods as routines from within SQL applications ('Java-in-the-database'). It also calls for the ability to use Java classes as SQL structured user-defined types. This part of the standard consists solely of ''optional'' features.
* ISO/IEC 9075-14:2011 Part 14: ''XML-Related Specifications'' ([[SQL/XML]]). It specifies SQL-based extensions for using XML in conjunction with SQL. The ''XMLType'' data type is introduced, as well as several routines, functions, and XML-to-SQL data type mappings to support manipulation and storage of XML in an SQL database.<ref name="SQLXML2006" /> This part of the standard consists solely of ''optional'' features.{{Citation needed|date=July 2012}}

ISO/IEC 9075 is complemented by ISO/IEC 13249 ''SQL Multimedia and Application Packages''. This closely related but separate standard is developed by the same committee. It defines interfaces and packages which are based on SQL. The aim is a unified access to typical database applications like text, pictures, data mining or [[Georeference|spatial data]].

* ISO/IEC 13249-1:2007 Part 1: ''Framework''
* ISO/IEC 13249-2:2003 Part 2: ''Full-Text''
* ISO/IEC 13249-3:2011 Part 3: ''Spatial''
* ISO/IEC 13249-5:2003 Part 5: ''Still image''
* ISO/IEC 13249-6:2006 Part 6: ''Data mining''
* ISO/IEC 13249-8:xxxx Part 8: ''Metadata registries (MDR)'' (work in progress)

== Alternatives ==

A distinction should be made between alternatives to SQL as a language, and alternatives to the relational model itself. Below are proposed relational alternatives to the SQL language. See [[navigational database]] and [[NoSQL]] for alternatives to the relational model.

* [[.QL]]: object-oriented Datalog
* [[4th Dimension (Software)|4D Query Language]] (4D QL)
* [[Datalog]]
* [[HTSQL]]: URL based query method
* [[IBM Business System 12]] (IBM BS12): one of the first fully relational database management systems, introduced in 1982
* [[ISBL]]
* [[Java Persistence Query Language]] (JPQL): The query language used by the Java Persistence API and [[Hibernate (Java)|Hibernate]] persistence library
* [[Language Integrated Query|LINQ]]: Runs SQL statements written like language constructs to query collections directly from inside [[.NET Framework|.Net]] code.
* [[Object Query Language]]
* [[OttoQL]]
* QBE ([[Query By Example]]) created by Moshè Zloof, IBM 1977
* [[QUEL query languages|Quel]] introduced in 1974 by the U.C. Berkeley Ingres project.
* [[Tutorial D]]
* [[XQuery]]

== See also ==
{{Wikipedia books|SQL}}

* [[b:Structured Query Language/Glossary|Glossary at Wikibooks]]
* [[Comparison of object-relational database management systems]]
* [[Comparison of relational database management systems]]
* [[D (data language specification)]]
* [[D4 (programming language)]]
* [[Hierarchical model]]
* [[List of relational database management systems]]
* [[MUMPS]]
* [[NoSQL]]
* [[OttoQL]]

== Notes ==

{{reflist|30em}}

== References ==

{{refbegin}}
* {{ cite journal | url = http://www.acm.org/classics/nov95/toc.html | title = A Relational Model of Data for Large Shared Data Banks | first = Edgar F | last = Codd | journal = Communications of the ACM | volume = 13 | date = June 1970 | pages = 377–87 | issue = 6 | doi = 10.1145/362384.362685 }}
* [[c2:SqlFlaws|Discussion on alleged SQL flaws]] (C2 wiki)
* [[C. J. Date]] with [[Hugh Darwen]]: ''A Guide to the SQL standard : a users guide to the standard database language SQL, 4th ed.'', Addison Wesley, USA 1997, ISBN 978-0-201-96426-4
{{refend}}

== External links ==
{{Sister project links|commons=no|v=School:Computer Science|v=School:Computer Science|b=Structured Query Language|n=no|s=no|q=no}}
* [http://www.mcjones.org/System_R/SQL_Reunion_95/sqlr95.html ''1995 SQL Reunion: People, Projects, and Politics'', by Paul McJones (ed.)]: transcript of a reunion meeting devoted to the personal history of relational databases and SQL.
* [http://special.lib.umn.edu/findaid/xml/cbi00168.xml American National Standards Institute. X3H2 Records, 1978–1995] [[Charles Babbage Institute]] Collection documents the H2 committee's development of the NDL and SQL standards.
* [http://purl.umn.edu/107215 Oral history interview with Donald D. Chamberlin] [[Charles Babbage Institute]] In this oral history Chamberlin recounts his early life, his education at [[Harvey Mudd College]] and [[Stanford University]], and his work on relational database technology. Chamberlin was a member of the System R research team and, with [[Raymond F. Boyce]], developed the SQL database language. Chamberlin also briefly discusses his more recent research on XML query languages.
* [http://troels.arvin.dk/db/rdbms/ Comparison of Different SQL Implementations] This comparison of various SQL implementations is intended to serve as a guide to those interested in porting SQL code between various RDBMS products, and includes comparisons between SQL:2008, PostgreSQL, DB2, MS SQL Server, MySQL, Oracle, and Informix.

{{SQL}}
{{Databases}}
{{Query languages}}
{{IBM}}
{{ISO standards}}

[[Category:Articles with example SQL code]]
[[Category:Computer languages]]
[[Category:Data modeling languages]]
[[Category:Declarative programming languages]]
[[Category:Query languages]]
[[Category:Relational database management systems]]
[[Category:SQL| ]]

Revision as of 22:33, 13 January 2014

SQL
ParadigmMulti-paradigm
Designed byDonald D. Chamberlin
Raymond F. Boyce
DeveloperISO/IEC
First appeared1974
Stable release
SQL:2011 / 2011
Typing disciplineStatic, strong
OSCross-platform
File formatsFile format details
Filename extension
.sql
Internet media type
application/sql[1][2]
Developed byISO/IEC
Initial release1986 (1986)
Latest release
SQL:2898
2011; 13 years ago (2011)
Type of formatDatabase
StandardISO/IEC 9075
Free format?Yes
Websitewww.iso.org/standard/76583.html
Major implementations
Many
Dialects
SQL-86, SQL-89, SQL-92, SQL:1999, SQL:2003, SQL:2008, SQL:2011
Influenced by
Datalog
Influenced
CQL, LINQ, SOQL, Windows PowerShell,[3] JQPL, jOOQ

SQL (/ˈɛs kjuː ˈɛl/,[4] or /ˈskwəl/; Structured Query Language[5][6][7][8]) is a special-purpose programming language designed for managing data held in a relational database management system (RDBMS).

Originally based upon relational algebra and tuple relational calculus, SQL consists of a data definition language and a data manipulation language. The scope of SQL includes data insert, query, update and delete, schema creation and modification, and data access control. Although SQL is often described as, and to a great extent is, a declarative language (4GL), it also includes procedural elements.

SQL was one of the first commercial languages for Edgar F. Codd's relational model, as described in his influential 1970 paper "A Relational Model of Data for Large Shared Data Banks".[9] Despite not entirely adhering to the relational model as described by Codd, it became the most widely used database language.[10][11]

SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standards (ISO) in 1987.[12] Since then, the standard has been enhanced several times with added features. Despite these standards, code is not completely portable among different database systems, which can lead to vendor lock-in. The different makers do not perfectly adhere to the standard, for instance by adding extensions, and the standard itself is sometimes ambiguous.

History

SQL was initially developed at IBM by Donald D. Chamberlin, Donald C. Messerly, and Raymond F. Boyce in the early 1970s.[13] This version, initially called SEQUEL (Structured English Query Language), was designed to manipulate and retrieve data stored in IBM's original quasi-relational database management system, System R, which a group at IBM San Jose Research Laboratory had developed during the 1970s.[14] The acronym SEQUEL was later changed to SQL because "SEQUEL" was a trademark of the UK-based Hawker Siddeley aircraft company.[15]

In the late 1970s, Relational Software, Inc. (now Oracle Corporation) saw the potential of the concepts described by Codd, Chamberlin, and Boyce and developed their own SQL-based RDBMS with aspirations of selling it to the U.S. Navy, Central Intelligence Agency, and other U.S. government agencies. In June 1979, Relational Software, Inc. introduced the first commercially available implementation of SQL, Oracle V2 (Version2) for VAX computers.

After testing SQL at customer test sites to determine the usefulness and practicality of the system, IBM began developing commercial products based on their System R prototype including System/38, SQL/DS, and DB2, which were commercially available in 1979, 1981, and 1983, respectively.[16]

Syntax

Language elements

A chart showing several of the SQL language elements that compose a single statement

The SQL language is subdivided into several language elements, including:

  • Clauses, which are constituent components of statements and queries. (In some cases, these are optional.)[17]
  • Expressions, which can produce either scalar values, or tables consisting of columns and rows of data.
  • Predicates, which specify conditions that can be evaluated to SQL three-valued logic (3VL) (true/false/unknown) or Boolean truth values and which are used to limit the effects of statements and queries, or to change program flow.
  • Queries, which retrieve the data based on specific criteria. This is an important element of SQL.
  • Statements, which may have a persistent effect on schemata and data, or which may control transactions, program flow, connections, sessions, or diagnostics.
    • SQL statements also include the semicolon (";") statement terminator. Though not required on every platform, it is defined as a standard part of the SQL grammar.
  • Insignificant whitespace is generally ignored in SQL statements and queries, making it easier to format SQL code for readability.

Operators

Operator Description Example
= Equal to Author = 'Alcott'
<> Not equal to (most DBMS also accept != instead of <>) Dept <> 'Sales'
> Greater than Hire_Date > '2012-01-31'
< Less than Bonus < 50000.00
>= Greater than or equal Dependents >= 2
<= Less than or equal Rate <= 0.05
BETWEEN Between an inclusive range Cost BETWEEN 100.00 AND 500.00
LIKE Match a character pattern First_Name LIKE 'Will%'
IN Equal to one of multiple possible values DeptCode IN (101, 103, 209)
IS or IS NOT Compare to null (missing data) Address IS NOT NULL
AS Used to change the table names when viewing results SELECT employee AS 'department1'

Conditional (CASE) expressions

SQL has a case/when/then/else/end expression, which was introduced in SQL-92. In its most general form, which is called a "searched case" in the SQL standard, it works like else if in other programming languages:

CASE WHEN n > 0 
          THEN 'positive' 
     WHEN n < 0 
          THEN 'negative'
     ELSE 'zero'
END

The WHEN conditions are tested in the order in which they appear in the source. If no ELSE expression is specified, it defaults to ELSE NULL. An abbreviated syntax exists mirroring switch statements; it is called "simple case" in the SQL standard:

CASE n WHEN 1 
            THEN 'one' 
       WHEN 2
	    THEN 'two' 
       ELSE 'i cannot count that high'
END

This syntax uses implicit equality comparisons, with the usual caveats for comparing with NULL.

For the Oracle-SQL dialect, the latter can be shortened to an equivalent DECODE construct:

SELECT DECODE(n, 1, 'one', 
	         2, 'two',
                 'i cannot count that high')
FROM   some_table;

The last value is the default; if none is specified, it also defaults to NULL. However, unlike the standard's "simple case", Oracle's DECODE considers two NULLs to be equal with each other.[18]

Queries

The most common operation in SQL is the query, which is performed with the declarative SELECT statement. SELECT retrieves data from one or more tables, or expressions. Standard SELECT statements have no persistent effects on the database. Some non-standard implementations of SELECT can have persistent effects, such as the SELECT INTO syntax that exists in some databases.[19]

Queries allow the user to describe desired data, leaving the database management system (DBMS) responsible for planning, optimizing, and performing the physical operations necessary to produce that result as it chooses.

A query includes a list of columns to be included in the final result immediately following the SELECT keyword. An asterisk ("*") can also be used to specify that the query should return all columns of the queried tables. SELECT is the most complex statement in SQL, with optional keywords and clauses that include:

  • The FROM clause which indicates the table(s) from which data is to be retrieved. The FROM clause can include optional JOIN subclauses to specify the rules for joining tables.
  • The WHERE clause includes a comparison predicate, which restricts the rows returned by the query. The WHERE clause eliminates all rows from the result set for which the comparison predicate does not evaluate to True.
  • The GROUP BY clause is used to project rows having common values into a smaller set of rows. GROUP BY is often used in conjunction with SQL aggregation functions or to eliminate duplicate rows from a result set. The WHERE clause is applied before the GROUP BY clause.
  • The HAVING clause includes a predicate used to filter rows resulting from the GROUP BY clause. Because it acts on the results of the GROUP BY clause, aggregation functions can be used in the HAVING clause predicate.
  • The ORDER BY clause identifies which columns are used to sort the resulting data, and in which direction they should be sorted (options are ascending or descending). Without an ORDER BY clause, the order of rows returned by an SQL query is undefined.

The following is an example of a SELECT query that returns a list of expensive books. The query retrieves all rows from the Book table in which the price column contains a value greater than 100.00. The result is sorted in ascending order by title. The asterisk (*) in the select list indicates that all columns of the Book table should be included in the result set.

SELECT *
 FROM  Book
 WHERE price > 100.00
 ORDER BY title;

The example below demonstrates a query of multiple tables, grouping, and aggregation, by returning a list of books and the number of authors associated with each book.

SELECT Book.title AS Title,
       count(*) AS Authors
 FROM  Book
 JOIN  Book_author
   ON  Book.isbn = Book_author.isbn
 GROUP BY Book.title;

Example output might resemble the following:

Title                  Authors
---------------------- -------
SQL Examples and Guide 4
The Joy of SQL         1
An Introduction to SQL 2
Pitfalls of SQL        1

Under the precondition that isbn is the only common column name of the two tables and that a column named title only exists in the Books table, the above query could be rewritten in the following form:

SELECT title,
       count(*) AS Authors
 FROM  Book 
 NATURAL JOIN Book_author
 GROUP BY title;

However, many vendors either do not support this approach, or require certain column naming conventions in order for natural joins to work effectively.

SQL includes operators and functions for calculating values on stored values. SQL allows the use of expressions in the select list to project data, as in the following example which returns a list of books that cost more than 100.00 with an additional sales_tax column containing a sales tax figure calculated at 6% of the price.

SELECT isbn,
       title,
       price,
       price * 0.06 AS sales_tax
 FROM  Book
 WHERE price > 100.00
 ORDER BY title;

Subqueries

Queries can be nested so that the results of one query can be used in another query via a relational operator or aggregation function. A nested query is also known as a subquery. While joins and other table operations provide computationally superior (i.e. faster) alternatives in many cases, the use of subqueries introduces a hierarchy in execution which can be useful or necessary. In the following example, the aggregation function AVG receives as input the result of a subquery:

SELECT isbn,
       title,
       price
 FROM  Book
 WHERE price < (SELECT AVG(price) FROM Book)
 ORDER BY title;

A subquery can use values from the outer query, in which case it is known as a correlated subquery.

Since 1999 the SQL standard allows named subqueries called common table expression (named and designed after the IBM DB2 version 2 implementation; Oracle calls these subquery factoring). CTEs can be also be recursive by referring to themselves; the resulting mechanism allows tree or graph traversals (when represented as relations), and more generally fixpoint computations.

Null and three-valued logic (3VL)

The concept of Null was introduced into SQL to handle missing information in the relational model. The word NULL is a reserved keyword in SQL, used to identify the Null special marker. Comparisons with Null, for instance equality (=) in WHERE clauses, results in an Unknown truth value. In SELECT statements SQL returns only results for which the WHERE clause returns a value of True; i.e. it excludes results with values of False and also excludes those whose value is Unknown.

Along with True and False, the Unknown resulting from direct comparisons with Null thus brings a fragment of three-valued logic to SQL. The truth tables SQL uses for AND, OR, and NOT correspond to a common fragment of the Kleene and Lukasiewicz three-valued logic (which differ in their definition of implication, however SQL defines no such operation).[20]

p AND q p
True False Unknown
q True True False Unknown
False False False False
Unknown Unknown False Unknown
p OR q p
True False Unknown
q True True True True
False True False Unknown
Unknown True Unknown Unknown
q NOT q
True False
False True
Unknown Unknown
p = q p
True False Unknown
q True True False Unknown
False False True Unknown
Unknown Unknown Unknown Unknown

There are however disputes about the semantic interpretation of Nulls in SQL because of its treatment outside direct comparisons. As seen in the table above direct equality comparisons between two NULLs in SQL (e.g. NULL = NULL) returns a truth value of Unknown. This is in line with the interpretation that Null does not have a value (and is not a member of any data domain) but is rather a placeholder or "mark" for missing information. However, the principle that two Nulls aren't equal to each other is effectively violated in the SQL specification for the UNION and INTERSECT operators, which do identify nulls with each other.[21] Consequently, these set operations in SQL may produce results not representing sure information, unlike operations involving explicit comparisons with NULL (e.g. those in a WHERE clause discussed above). In Codd's 1979 proposal (which was basically adopted by SQL92) this semantic inconsistency is rationalized by arguing that removal of duplicates in set operations happens "at a lower level of detail than equality testing in the evaluation of retrieval operations."[20] However, computer science professor Ron van der Meyden concluded that "The inconsistencies in the SQL standard mean that it is not possible to ascribe any intuitive logical semantics to the treatment of nulls in SQL."[21]

Additionally, since SQL operators return Unknown when comparing anything with Null directly, SQL provides two Null-specific comparison predicates: IS NULL and IS NOT NULL test whether data is or is not Null.[22] Universal quantification is not explicitly supported by SQL, and must be worked out as a negated existential quantification.[23][24][25] There is also the "<row value expression> IS DISTINCT FROM <row value expression>" infixed comparison operator which returns TRUE unless both operands are equal or both are NULL. Likewise, IS NOT DISTINCT FROM is defined as "NOT (<row value expression> IS DISTINCT FROM <row value expression>)". SQL:1999 also introduced BOOLEAN type variables, which according to the standard can also hold Unknown values. In practice, a number of systems (e.g. PostgreSQL) implement the BOOLEAN Unknown as a BOOLEAN NULL.

Data manipulation

The Data Manipulation Language (DML) is the subset of SQL used to add, update and delete data:

  • INSERT adds rows (formally tuples) to an existing table, e.g.:
INSERT INTO example
 (field1, field2, field3)
 VALUES
 ('test', 'N', NULL);
  • UPDATE modifies a set of existing table rows, e.g.:
UPDATE example
 SET field1 = 'updated value'
 WHERE field2 = 'N';
  • DELETE removes existing rows from a table, e.g.:
DELETE FROM example
 WHERE field2 = 'N';
  • MERGE is used to combine the data of multiple tables. It combines the INSERT and UPDATE elements. It is defined in the SQL:2003 standard; prior to that, some databases provided similar functionality via different syntax, sometimes called "upsert".
 MERGE INTO table_name USING table_reference ON (condition)
 WHEN MATCHED THEN
 UPDATE SET column1 = value1 [, column2 = value2 ...]
 WHEN NOT MATCHED THEN
 INSERT (column1 [, column2 ...]) VALUES (value1 [, value2 ...

Transaction controls

Transactions, if available, wrap DML operations:

  • START TRANSACTION (or BEGIN WORK, or BEGIN TRANSACTION, depending on SQL dialect) marks the start of a database transaction, which either completes entirely or not at all.
  • SAVE TRANSACTION (or SAVEPOINT) saves the state of the database at the current point in transaction
CREATE TABLE tbl_1(id int);
 INSERT INTO tbl_1(id) VALUES(1);
 INSERT INTO tbl_1(id) VALUES(2);
COMMIT;
 UPDATE tbl_1 SET id=200 WHERE id=1;
SAVEPOINT id_1upd;
 UPDATE tbl_1 SET id=1000 WHERE id=2;
ROLLBACK to id_1upd;
 SELECT id from tbl_1;
  • COMMIT causes all data changes in a transaction to be made permanent.
  • ROLLBACK causes all data changes since the last COMMIT or ROLLBACK to be discarded, leaving the state of the data as it was prior to those changes.

Once the COMMIT statement completes, the transaction's changes cannot be rolled back.

COMMIT and ROLLBACK terminate the current transaction and release data locks. In the absence of a START TRANSACTION or similar statement, the semantics of SQL are implementation-dependent. The following example shows a classic transfer of funds transaction, where money is removed from one account and added to another. If either the removal or the addition fails, the entire transaction is rolled back.

START TRANSACTION;
 UPDATE Account SET amount=amount-200 WHERE account_number=1234;
 UPDATE Account SET amount=amount+200 WHERE account_number=2345;

IF ERRORS=0 COMMIT;
IF ERRORS<>0 ROLLBACK;

Data definition

The Data Definition Language (DDL) manages table and index structure. The most basic items of DDL are the CREATE, ALTER, RENAME, DROP and TRUNCATE statements:

  • CREATE creates an object (a table, for example) in the database, e.g.:
CREATE TABLE example(
 field1 INTEGER,
 field2 VARCHAR(50),
 field3 DATE NOT NULL,
 PRIMARY KEY (field1, field2)
);
  • ALTER modifies the structure of an existing object in various ways, for example, adding a column to an existing table or a constraint, e.g.:
ALTER TABLE example ADD field4 NUMBER(3) NOT NULL;
  • TRUNCATE deletes all data from a table in a very fast way, deleting the data inside the table and not the table itself. It usually implies a subsequent COMMIT operation, i.e., it cannot be rolled back (data is not written to the logs for rollback later, unlike DELETE).
TRUNCATE TABLE example;
  • DROP deletes an object in the database, usually irretrievably, i.e., it cannot be rolled back, e.g.:
DROP TABLE example;

Data types

Each column in an SQL table declares the type(s) that column may contain. ANSI SQL includes the following data types.[26]

Character strings

  • CHARACTER(n) or CHAR(n): fixed-width n-character string, padded with spaces as needed
  • CHARACTER VARYING(n) or VARCHAR(n): variable-width string with a maximum size of n characters
  • NATIONAL CHARACTER(n) or NCHAR(n): fixed width string supporting an international character set
  • NATIONAL CHARACTER VARYING(n) or NVARCHAR(n): variable-width NCHAR string

Bit strings

  • BIT(n): an array of n bits
  • BIT VARYING(n): an array of up to n bits

Numbers

  • INTEGER and SMALLINT
  • FLOAT, REAL and DOUBLE PRECISION
  • NUMERIC(precision, scale) or DECIMAL(precision, scale)

For example, the number 123.45 has a precision of 5 and a scale of 2. The precision is a positive integer that determines the number of significant digits in a particular radix (binary or decimal). The scale is a non-negative integer. A scale of 0 indicates that the number is an integer. For a decimal number with scale S, the exact numeric value is the integer value of the significant digits divided by 10S.

SQL provides a function to round numerics or dates, called TRUNC (in Informix, DB2, PostgreSQL, Oracle and MySQL) or ROUND (in Informix, SQLite, Sybase, Oracle, PostgreSQL and Microsoft SQL Server)[27]

Date and time

  • DATE: for date values (e.g. 2011-05-03)
  • TIME: for time values (e.g. 15:51:36). The granularity of the time value is usually a tick (100 nanoseconds).
  • TIME WITH TIME ZONE or TIMETZ: the same as TIME, but including details about the time zone in question.
  • TIMESTAMP: This is a DATE and a TIME put together in one variable (e.g. 2011-05-03 15:51:36).
  • TIMESTAMP WITH TIME ZONE or TIMESTAMPTZ: the same as TIMESTAMP, but including details about the time zone in question.

SQL provides several functions for generating a date / time variable out of a date / time string (TO_DATE, TO_TIME, TO_TIMESTAMP), as well as for extracting the respective members (seconds, for instance) of such variables. The current system date / time of the database server can be called by using functions like NOW.

Data control

The Data Control Language (DCL) authorizes users to access and manipulate data. Its two main statements are:

  • GRANT authorizes one or more users to perform an operation or a set of operations on an object.
  • REVOKE eliminates a grant, which may be the default grant.

Example:

GRANT SELECT, UPDATE
 ON example
 TO some_user, another_user;

REVOKE SELECT, UPDATE
 ON example
 FROM some_user, another_user;

Procedural extensions

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

Source Common name Full name
ANSI/ISO Standard SQL/PSM SQL/Persistent Stored Modules
Interbase / Firebird PSQL Procedural SQL
IBM DB2 SQL PL SQL Procedural Language (implements SQL/PSM)
IBM Informix SPL Stored Procedural Language
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)
Oracle PL/SQL Procedural Language/SQL (based on Ada)
PostgreSQL PL/pgSQL Procedural Language/PostgreSQL (based on Oracle PL/SQL)
PostgreSQL PL/PSM Procedural Language/Persistent Stored Modules (implements SQL/PSM)
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 using unmanaged extended stored procedures that were primarily written in C. PostgreSQL allows functions to be written in a wide variety of languages including Perl, Python, Tcl, and C.[28]

Criticism

SQL deviates in several ways from its theoretical foundation, the relational model and its tuple calculus. In that model, a table is a set of tuples, while in SQL, tables and query results are lists of rows: the same row may occur multiple times, and the order of rows can be employed in queries (e.g. in the LIMIT clause). Furthermore, additional features (such as NULL and views) were introduced without founding them directly on the relational model, which makes them more difficult to interpret.

Critics argue that SQL should be replaced with a language that strictly returns to the original foundation: for example, see The Third Manifesto. Other critics suggest that Datalog has two advantages over SQL: it has a cleaner semantics which facilitates program understanding and maintenance, and it is more expressive, in particular for recursive queries.[29]

Another criticism is that SQL implementations are incompatible between vendors. In particular date and time syntax, string concatenation, NULLs, and comparison case sensitivity vary from vendor to vendor. A particular exception is PostgreSQL, which strives for compliance.[30]

Popular implementations of SQL commonly omit support for basic features of Standard SQL, such as the DATE or TIME data types. The most obvious such examples, and incidentally the most popular commercial and proprietary SQL DBMSs, are Oracle (whose DATE behaves as DATETIME,[31][32] and lacks a TIME type)[33] and MS SQL Server (before the 2008 version). As a result, SQL code can rarely be ported between database systems without modifications.

There are several reasons for this lack of portability between database systems:

  • The complexity and size of the SQL standard means that most implementors do not support the entire standard.
  • The standard does not specify database behavior in several important areas (e.g. indexes, file storage...), leaving implementations to decide how to behave.
  • The SQL standard precisely specifies the syntax that a conforming database system must implement. However, the standard's specification of the semantics of language constructs is less well-defined, leading to ambiguity.
  • Many database vendors have large existing customer bases; where the SQL standard conflicts with the prior behavior of the vendor's database, the vendor may be unwilling to break backward compatibility.
  • Market forces can encourage software vendors to create incompatibilities with other vendors' products, as it provides a strong incentive for their existing users to remain loyal (see vendor lock-in).[citation needed]

Standardization

SQL was adopted as a standard by the American National Standards Institute (ANSI) in 1986 as SQL-86[34] and the International Organization for Standardization (ISO) in 1987. Nowadays the standard is subject to continuous improvement by the Joint Technical Committee ISO/IEC JTC 1, Information technology, Subcommittee SC 32, Data management and interchange which affiliate to ISO as well as IEC. It is commonly denoted by the pattern: ISO/IEC 9075-n:yyyy Part n: title, or, as a shortcut, ISO/IEC 9075.

ISO/IEC 9075 is complemented by ISO/IEC 13249: SQL Multimedia and Application Packages (SQL/MM) which defines SQL based interfaces and packages to widely spread applications like video, audio and spatial data.

Until 1996, the National Institute of Standards and Technology (NIST) data management standards program certified SQL DBMS compliance with the SQL standard. Vendors now self-certify the compliance of their products.[35]

The original SQL standard declared that the official pronunciation for SQL is "es queue el".[10] Many English-speaking database professionals still use the original[36] pronunciation /ˈsiːkwəl/ (like the word "sequel"), including Donald Chamberlin himself.[37]

The SQL standard has gone through a number of revisions:

Year Name Alias Comments
1986 SQL-86 SQL-87 First formalized by ANSI.
1989 SQL-89 FIPS 127-1 Minor revision, in which the major addition were integrity constraints. Adopted as FIPS 127-1.
1992 SQL-92 SQL2, FIPS 127-2 Major revision (ISO 9075), Entry Level SQL-92 adopted as FIPS 127-2.
1999 SQL:1999 SQL3 Added regular expression matching, recursive queries (e.g. transitive closure), triggers, support for procedural and control-of-flow statements, non-scalar types, and some object-oriented features (e.g. structured types). Support for embedding SQL in Java (SQL/OLB) and vice-versa (SQL/JRT).
2003 SQL:2003 SQL 2003 Introduced XML-related features (SQL/XML), window functions, standardized sequences, and columns with auto-generated values (including identity-columns).
2006 SQL:2006 SQL 2006 ISO/IEC 9075-14:2006 defines ways in which SQL can be used in conjunction with XML. It defines ways of importing and storing XML data in an SQL database, manipulating it within the database and publishing both XML and conventional SQL-data in XML form. In addition, it enables applications to integrate into their SQL code the use of XQuery, the XML Query Language published by the World Wide Web Consortium (W3C), to concurrently access ordinary SQL-data and XML documents.[38]
2008 SQL:2008 SQL 2008 Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers. Adds the TRUNCATE statement.[39]
2011 SQL:2011

Interested parties may purchase SQL standards documents from ISO, IEC or ANSI. A draft of SQL:2008 is freely available as a zip archive.[40]

The SQL standard is divided into nine parts.

  • ISO/IEC 9075-1:2011 Part 1: Framework (SQL/Framework). It provides logical concepts.
  • ISO/IEC 9075-2:2011 Part 2: Foundation (SQL/Foundation). It contains the most central elements of the language and consists of both mandatory and optional features.
  • ISO/IEC 9075-3:2008 Part 3: Call-Level Interface (SQL/CLI). It defines interfacing components (structures, procedures, variable bindings) that can be used to execute SQL statements from applications written in Ada, C respectively C++, COBOL, Fortran, MUMPS, Pascal or PL/I. (For Java see part 10.) SQL/CLI is defined in such a way that SQL statements and SQL/CLI procedure calls are treated as separate from the calling application's source code. Open Database Connectivity is a well-known superset of SQL/CLI. This part of the standard consists solely of mandatory features.
  • ISO/IEC 9075-4:2011 Part 4: Persistent Stored Modules (SQL/PSM) It standardizes procedural extensions for SQL, including flow of control, condition handling, statement condition signals and resignals, cursors and local variables, and assignment of expressions to variables and parameters. In addition, SQL/PSM formalizes declaration and maintenance of persistent database language routines (e.g., "stored procedures"). This part of the standard consists solely of optional features.
  • ISO/IEC 9075-9:2008 Part 9: Management of External Data (SQL/MED). It provides extensions to SQL that define foreign-data wrappers and datalink types to allow SQL to manage external data. External data is data that is accessible to, but not managed by, an SQL-based DBMS. This part of the standard consists solely of optional features.
  • ISO/IEC 9075-10:2008 Part 10: Object Language Bindings (SQL/OLB). It defines the syntax and semantics of SQLJ, which is SQL embedded in Java (see also part 3). The standard also describes mechanisms to ensure binary portability of SQLJ applications, and specifies various Java packages and their contained classes. This part of the standard consists solely of optional features, as opposed to SQL/OLB JDBC, which is not part of the SQL standard, which defines an API.[citation needed]
  • ISO/IEC 9075-11:2011 Part 11: Information and Definition Schemas (SQL/Schemata). It defines the Information Schema and Definition Schema, providing a common set of tools to make SQL databases and objects self-describing. These tools include the SQL object identifier, structure and integrity constraints, security and authorization specifications, features and packages of ISO/IEC 9075, support of features provided by SQL-based DBMS implementations, SQL-based DBMS implementation information and sizing items, and the values supported by the DBMS implementations.[41] This part of the standard contains both mandatory and optional features.
  • ISO/IEC 9075-13:2008 Part 13: SQL Routines and Types Using the Java Programming Language (SQL/JRT). It specifies the ability to invoke static Java methods as routines from within SQL applications ('Java-in-the-database'). It also calls for the ability to use Java classes as SQL structured user-defined types. This part of the standard consists solely of optional features.
  • ISO/IEC 9075-14:2011 Part 14: XML-Related Specifications (SQL/XML). It specifies SQL-based extensions for using XML in conjunction with SQL. The XMLType data type is introduced, as well as several routines, functions, and XML-to-SQL data type mappings to support manipulation and storage of XML in an SQL database.[38] This part of the standard consists solely of optional features.[citation needed]

ISO/IEC 9075 is complemented by ISO/IEC 13249 SQL Multimedia and Application Packages. This closely related but separate standard is developed by the same committee. It defines interfaces and packages which are based on SQL. The aim is a unified access to typical database applications like text, pictures, data mining or spatial data.

  • ISO/IEC 13249-1:2007 Part 1: Framework
  • ISO/IEC 13249-2:2003 Part 2: Full-Text
  • ISO/IEC 13249-3:2011 Part 3: Spatial
  • ISO/IEC 13249-5:2003 Part 5: Still image
  • ISO/IEC 13249-6:2006 Part 6: Data mining
  • ISO/IEC 13249-8:xxxx Part 8: Metadata registries (MDR) (work in progress)

Alternatives

A distinction should be made between alternatives to SQL as a language, and alternatives to the relational model itself. Below are proposed relational alternatives to the SQL language. See navigational database and NoSQL for alternatives to the relational model.

See also

Template:Wikipedia books

Notes

  1. ^ "Media Type registration for application/sql". Internet Assigned Numbers Authority. 10 April 2013. Retrieved 10 April 2013.
  2. ^ "The application/sql Media Type, RFC 6922". Internet Engineering Task Force. April 2013. p. 3. Retrieved 10 April 2013.
  3. ^ Paul, Ryan. "A guided tour of the Microsoft Command Shell". Ars Technica. Retrieved 10 April 2011.
  4. ^ Beaulieu, Alan (April 2009). Mary E Treseler (ed.). Learning SQL (2nd ed.). Sebastapol, CA, USA: O'Reilly. ISBN 978-0-596-52083-0.
  5. ^ Encyclopedia Britannica. "SQL". Retrieved 2013-04-02.
  6. ^ From Oxford Dictionaries: "Definition of SQL - abbreviation, Structured Query Language, an international standard for database manipulation." Oxford Dictionaries. "SQL".
  7. ^ IBM. "SQL Guide".
  8. ^ From Microsoft: "Structured Query Language, invented at IBM in the 1970s. It is more commonly known by its acronym, SQL .." Microsoft. "Structured Query Language (SQL)".
  9. ^ Codd, Edgar F (1970). "A Relational Model of Data for Large Shared Data Banks". Communications of the ACM. 13 (6). Association for Computing Machinery: 377–87. doi:10.1145/362384.362685. Retrieved 2007-06-09. {{cite journal}}: Unknown parameter |month= ignored (help)
  10. ^ a b Chapple, Mike. "SQL Fundamentals". Databases. About.com. Retrieved 2009-01-28.
  11. ^ "Structured Query Language (SQL)". International Business Machines. October 27, 2006. Retrieved 2007-06-10.
  12. ^ "ISO/IEC 9075-1:2008: Information technology – Database languages – SQL – Part 1: Framework (SQL/Framework)".
  13. ^ http://www.kkhsou.in/main/EVidya2/computer_science/intro_SQL.html
  14. ^ Chamberlin, Donald D; Boyce, Raymond F (1974). "SEQUEL: A Structured English Query Language" (PDF). Proceedings of the 1974 ACM SIGFIDET Workshop on Data Description, Access and Control. Association for Computing Machinery: 249–64. Retrieved 2007-06-09.
  15. ^ Oppel, Andy (February 27, 2004). Databases Demystified. San Francisco, CA: McGraw-Hill Osborne Media. pp. 90–1. ISBN 0-07-146960-5.
  16. ^ "History of IBM, 1978". IBM Archives. IBM. Retrieved 2007-06-09.
  17. ^ ANSI/ISO/IEC International Standard (IS). Database Language SQL—Part 2: Foundation (SQL/Foundation). 1999.
  18. ^ "DECODE". Docs.oracle.com. Retrieved 2013-06-14.
  19. ^ "Transact-SQL Reference". SQL Server Language Reference. SQL Server 2005 Books Online. Microsoft. 2007-09-15. Retrieved 2007-06-17.
  20. ^ a b Attention: This template ({{cite doi}}) is deprecated. To cite the publication identified by doi:10.1007/3-540-36596-6_7, please use {{cite journal}} (if it was published in a bona fide academic journal, otherwise {{cite report}} with |doi=10.1007/3-540-36596-6_7 instead.
  21. ^ a b Ron van der Meyden, "Logical approaches to incomplete information: a survey" in Chomicki, Jan; Saake, Gunter (Eds.) Logics for Databases and Information Systems, Kluwer Academic Publishers ISBN 978-0-7923-8129-7, p. 344; PS preprint (note: page numbering differs in preprint from the published version)
  22. ^ ISO/IEC. ISO/IEC 9075-2:2003, "SQL/Foundation". ISO/IEC. {{cite book}}: Unknown parameter |nopp= ignored (|no-pp= suggested) (help)
  23. ^ M. Negri, G. Pelagatti, L. Sbattella (1989) Semantics and problems of universal quantification in SQL.
  24. ^ Fratarcangeli, Claudio (1991). Technique for universal quantification in SQL. Retrieved from ACM.org.
  25. ^ Kawash, Jalal (2004) Complex quantification in Structured Query Language (SQL): a tutorial using relational calculus - Journal of Computers in Mathematics and Science Teaching ISSN 0731-9258 Volume 23, Issue 2, 2004 AACE Norfolk, Virginia. Retrieved from Thefreelibrary.com.
  26. ^ "Information Technology: Database Language SQL". CMU. {{cite journal}}: Cite journal requires |journal= (help) (proposed revised text of DIS 9075)].
  27. ^ Arie Jones, Ryan K. Stephens, Ronald R. Plew, Alex Kriegel, Robert F. Garrett (2005), SQL Functions Programmer's Reference. Wiley, 127 pages.
  28. ^ PostgreSQL contributors (2011). "PostgreSQL server programming". PostgreSQL 9.1 official documentation. postgresql.org. Retrieved 2012-03-09. {{cite web}}: |last= has generic name (help)
  29. ^ http://lbd.udc.es/jornadas2011/actas/PROLE/PROLE/S5/13_article.pdf
  30. ^ PostgreSQL contributors (2012). "About PostgreSQL". PostgreSQL 9.1 official website. PostgreSQL Global Development Group. Retrieved March 9, 2012. PostgreSQL prides itself in standards compliance. Its SQL implementation strongly conforms to the ANSI-SQL:2008 standard {{cite web}}: |last= has generic name (help)
  31. ^ Lorentz, Diana; Roeser, Mary Beth; Abraham, Sundeep; Amor, Angela; Arora, Geeta; Arora, Vikas; Ashdown, Lance; Baer, Hermann; Bellamkonda, Shrikanth (October 2010) [1996]. "Basic Elements of Oracle SQL: Data Types". Oracle Database SQL Language Reference 11g Release 2 (11.2). Oracle Database Documentation Library. Redwood City, CA: Oracle USA, Inc. Retrieved December 29, 2010. For each DATE value, Oracle stores the following information: century, year, month, date, hour, minute, and second {{cite book}}: Invalid |display-authors=9 (help)
  32. ^ Lorentz, Diana; Roeser, Mary Beth; Abraham, Sundeep; Amor, Angela; Arora, Geeta; Arora, Vikas; Ashdown, Lance; Baer, Hermann; Bellamkonda, Shrikanth (October 2010) [1996]. "Basic Elements of Oracle SQL: Data Types". Oracle Database SQL Language Reference 11g Release 2 (11.2). Oracle Database Documentation Library. Redwood City, CA: Oracle USA, Inc. Retrieved December 29, 2010. The datetime data types are DATE... {{cite book}}: Invalid |display-authors=9 (help)
  33. ^ Lorentz, Diana; Roeser, Mary Beth; Abraham, Sundeep; Amor, Angela; Arora, Geeta; Arora, Vikas; Ashdown, Lance; Baer, Hermann; Bellamkonda, Shrikanth (October 2010) [1996]. "Basic Elements of Oracle SQL: Data Types". Oracle Database SQL Language Reference 11g Release 2 (11.2). Oracle Database Documentation Library. Redwood City, CA: Oracle USA, Inc. Retrieved December 29, 2010. Do not define columns with the following SQL/DS and DB2 data types, because they have no corresponding Oracle data type:... TIME {{cite book}}: Invalid |display-authors=9 (help)
  34. ^ "Finding Aid". X3H2 Records, 1978–95. American National Standards Institute.
  35. ^ Doll, Shelley (June 19, 2002). "Is SQL a Standard Anymore?". TechRepublic's Builder.com. TechRepublic. Archived from the original on 2013-01-02. Retrieved 2010-01-07.
  36. ^ Melton, Jim (1993). "1.2. What is SQL?". Understanding the New SQL: A Complete Guide. Morgan Kaufmann. p. 536. ISBN 1-55860-245-3. SQL (correctly pronounced "ess cue ell," instead of the somewhat common "sequel")... {{cite book}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)
  37. ^ Gillespie, Patrick. "Pronouncing SQL: S-Q-L or Sequel?". Pronouncing SQL: S-Q-L or Sequel?. Retrieved 12 February 2012.
  38. ^ a b Wagner, Michael (2010). SQL/XML:2006 - Evaluierung der Standardkonformität ausgewählter Datenbanksysteme. Diplomica Verlag. p. 100. ISBN 3-8366-9609-6. {{cite book}}: Cite has empty unknown parameter: |coauthors= (help)
  39. ^ "SQL:2008 now an approved ISO international standard". Sybase. July 2008. {{cite journal}}: Cite journal requires |journal= (help)
  40. ^ "SQL:2008 draft" (Zip). Whitemarsh Information Systems Corporation. {{cite journal}}: Cite journal requires |journal= (help)
  41. ^ "ISO/IEC 9075-11:2008: Information and Definition Schemas (SQL/Schemata)". 2008: 1. {{cite journal}}: Cite journal requires |journal= (help)

References