SQL: Difference between revisions
Troels Arvin (talk | contribs) Rv edit by Danakil to Revision as of 23:17, 31 Aug: SQL is _not_ pronounced "sequel". And SQL certainly qualifies as a DSL. |
SQL pronunciation |
||
Line 1: | Line 1: | ||
{{Short description|Relational database programming language}} |
|||
'''Structured Query Language''' ('''SQL''') is the most popular computer language used with databases. |
|||
{{use dmy dates|date=December 2024}} |
|||
{{Use American English|date=March 2025}} |
|||
{{About|the database language}} |
|||
{{redirect|SEQUEL|the topic of the word|sequel|other uses|Sequel (disambiguation)}} |
|||
{{infobox programming language |
|||
| name = SQL (Structured Query Language) |
|||
| paradigm = [[Declarative programming|Declarative]] |
|||
| family = [[Query language]] |
|||
| released = {{Start date and age|1973|df=yes}} |
|||
| designer = [[Donald D. Chamberlin]]<br />[[Raymond F. Boyce]] |
|||
| developer = [[ISO/IEC JTC 1/SC 32|ISO/IEC JTC 1 (Joint Technical Committee 1) / SC 32 (Subcommittee 32)]] / WG 3 (Working Group 3) |
|||
| typing = [[Static typing|Static]], [[Strong typing|strong]] |
|||
| implementations = [[List of relational database management systems|Many]] |
|||
| dialects = {{flatlist| |
|||
* SQL-86 |
|||
* SQL-89 |
|||
* [[SQL-92]] |
|||
* [[SQL:1999]] |
|||
* [[SQL:2003]] |
|||
* [[SQL:2006]] |
|||
* [[SQL:2008]] |
|||
* [[SQL:2011]] |
|||
* [[SQL:2016]] |
|||
* [[SQL:2023]] |
|||
}} |
|||
| influenced = [[Contextual Query Language|CQL]], [[Language Integrated Query|LINQ]], [[SPARQL]], SOQL, [[PowerShell]],<ref name="ars" /> [[Java Persistence Query Language|JPQL]], [[Java Object Oriented Querying|jOOQ]], [[N1QL]], [[Graph Query Language|GQL]] |
|||
| website = {{URL|https://www.iso.org/standard/76583.html}} |
|||
| latest_release_version = [[SQL:2023]] |
|||
| latest_release_date = {{Start date and age|2023|06|df=yes}} |
|||
| influenced_by = [[Datalog]] |
|||
| operating_system = [[Cross-platform]] |
|||
| fileformat = |
|||
| wikibooks = Structured Query Language |
|||
}} |
|||
{{Infobox file format |
|||
| name = SQL (file format) |
|||
| icon = |
|||
| extension = .sql |
|||
| mime = application/sql<ref name="iana" /><ref name="application/sql" /> |
|||
| uniform type = |
|||
| owner = [[ISO]]/[[International Electrotechnical Commission|IEC]] |
|||
| released = {{Start date and age|1986|df=yes}} |
|||
| latest release version = |
|||
| latest release date = |
|||
| genre = Database |
|||
| standard = [[ISO/IEC 9075]] |
|||
| open = Yes |
|||
| url = {{URL|https://www.iso.org/standard/76583.html}} |
|||
}} |
|||
'''Structured Query Language''' ('''SQL''') (<small>pronounced</small> {{IPAc-en|ˌ|ɛ|s|ˌ|k|j|u|ˈ|ɛ|l}} ''S-Q-L''; <small>or alternatively as</small> {{IPAc-en|ˈ|s|iː|k|w|ə|l|audio=LL-Q1860 (eng)-Flame, not lame-SQL.wav}} "sequel") |
|||
Technically, SQL is a [[declarative programming language]] for use in "quasi-[[relational database]]s". Theorists note that many of the original SQL features were inspired by, but in violation of, [[tuple calculus]]. Recent extensions to SQL achieved relational completeness, but have worsened the violations, as documented in [[The Third Manifesto]]. |
|||
<ref name="learningSQL" /><ref name="chamberlin2001">{{cite journal |url=https://conservancy.umn.edu/handle/11299/107215 |last1=Chamberlin |first1=Donald D. |first2=Philip L. |last2=Frana |website=University Digital Conservancy |title=Oral history interview with Donald D. Chamberlin |date=3 October 2001 |hdl=11299/107215 |access-date=14 January 2020 |quote=We changed the original name "SEQUEL" to SQL because we got a letter from somebody's lawyer that said the name "SEQUEL" belonged to them. We shortened it to SQL, for Structured Query Language, and the product was known as SQL/DS. |archive-date=24 February 2020 |archive-url=https://web.archive.org/web/20200224145836/https://conservancy.umn.edu/handle/11299/107215 |url-status=live }}</ref> is a [[domain-specific language]] used to manage data, especially in a [[relational database management system]] (RDBMS). It is particularly useful in handling [[Data model|structured data]], i.e., data incorporating relations among entities and variables. |
|||
Introduced in the 1970s, SQL offered two main advantages over older read–write [[API]]s such as [[ISAM]] or [[VSAM]]. Firstly, it introduced the concept of accessing many [[Record (computer science)|records]] with one single [[Command-line interface|command]]. Secondly, it eliminates the need to specify ''how'' to reach a record, i.e., with or without an [[Database index|index]]. |
|||
==Origins== |
|||
Originally based upon [[relational algebra]] and [[tuple relational calculus]], SQL consists of many types of statements,<ref>[[SQL-92]], 4.22 SQL-statements, 4.22.1 Classes of SQL-statements "There are at least five ways of classifying SQL-statements:", 4.22.2, SQL statements classified by function "The following are the main classes of SQL-statements:"; [[SQL:2003]] 4.11 SQL-statements, and later revisions.</ref> which may be informally classed as [[sublanguage]]s, commonly: [[Data Query language|Data query Language]] (DQL), [[data definition language|Data Definition Language]] (DDL), [[data control language|Data Control Language]] (DCL), and [[data manipulation language|Data Manipulation Language]] (DML).<ref>{{cite book |
|||
SQL was originally created by [[International Business Machines|IBM]], but many vendors developed dialects of it. It was adopted as a standard by the [[American National Standards Institute]] (ANSI) in [[1986]] and [[ISO]] in [[1987]]. |
|||
|title=Structured Query Language By Example - Volume I: Data Query Language |
|||
In their SQL standard, the ANSI declared that the official pronunciation for SQL is ''"es queue el"''. However, many database professionals have taken to the "slang" pronunciation ''sequel'', that reflects the language's original name, Sequel, before trademark conflicts caused IBM to propagate the current moniker. |
|||
|first=Mark |
|||
|last=Chatham |
|||
|url=https://books.google.com/books?id=64MBBAAAQBAJ&pg=PA8 |
|||
|year=2012 |
|||
|isbn=9781291199512 |
|||
|page=8 |
|||
|publisher=Lulu.com |
|||
}}</ref> |
|||
The scope of SQL includes data query, data manipulation (insert, update, and delete), data definition ([[database schema|schema]] creation and modification), and data access control. Although SQL is essentially a [[Declarative programming|declarative language]] ([[4GL]]), it also includes [[Procedural programming|procedural]] elements. |
|||
The SQL standard has gone through a number of revisions: |
|||
{| border=1 |
|||
! Year !! Name !! Alias !! Comments |
|||
|- valign=top |
|||
| [[1986]] || SQL-86 || SQL-87 || First published by ANSI. Ratified by ISO in [[1987]]. |
|||
|- valign=top |
|||
| [[1989]] || SQL-89 || || Minor revision. |
|||
|- valign=top |
|||
| [[1992]] || SQL-92 || SQL2 || Major revision. |
|||
|- valign=top |
|||
| [[1999]] || SQL:1999 || SQL3 || Added regular expression matching, recursive queries, triggers, non-scalar types and some object-oriented features. (The last two are somewhat controversial and not yet widely supported.) |
|||
|- valign=top |
|||
| [[2003]] || SQL:2003 || || Introduced XML-related features, standardized sequences and columns with auto-generated values (including identity-columns). <!-- Removed "and more", since there's always "more". Should list anything else significant. --> |
|||
(See [http://www.acm.org/sigmod/record/issues/0403/index.html#standards Eisenberg et al.: ''SQL:2003 Has Been Published''].) |
|||
|} |
|||
SQL was one of the first commercial languages to use [[Edgar F. Codd]]'s [[relational model]]. The model was described in his influential 1970 paper, "A Relational Model of Data for Large Shared Data Banks".<ref name="codd-relational-model" /> Despite not entirely adhering to [[Codd's 12 rules|the relational model as described by Codd]], SQL became the most widely used database language.<ref name="SQL-Fundamentals" /><ref name="IBM-sql" /> |
|||
The SQL standard is not freely available. SQL:2003 may be purchased from [http://www.iso.org/ ISO] or [http://webstore.ansi.org/ ANSI]. A late draft is available as a [http://www.wiscorp.com/sql/sql_2003_standard.zip zip archive] from [http://www.wiscorp.com/ Whitemarsh Information Systems Corporation]. The zip archives contains a number of [[Portable Document Format|PDF]] files that define the parts of the SQL:2003 specification. |
|||
SQL became a [[Technical standard|standard]] of the [[American National Standards Institute]] (ANSI) in 1986 and of the [[International Organization for Standardization]] (ISO) in 1987.<ref name="ISO 9075:1987" /> Since then, the standard has been revised multiple times to include a larger set of features and incorporate common extensions. Despite the existence of standards, virtually no implementations in existence adhere to it fully, and most SQL code requires at least some changes before being ported to different [[database]] systems. |
|||
Although SQL is defined by both ANSI and ISO, there are many extensions to and variations on the version of the language defined by these standards bodies. Many of these extensions are of a proprietary nature, such as [[Oracle Corporation]]'s [[PL SQL|PL/SQL]] or [[Sybase]] and [[Microsoft]]'s [[Transact-SQL]]. It is also not uncommon for commercial implementations to omit support for basic features of the standard, such as the <code>DATE</code> or <code>TIME</code> data types, preferring some variant of their own. As a result, in contrast to ANSI [[C programming language|C]] or ANSI [[Fortran]], which can usually be ported from platform to platform without major structural changes, SQL code can rarely be ported between database systems without major modifications. There are several reasons for this lack of portability between database systems: |
|||
{{toclimit|3}} |
|||
==History== |
|||
*the complexity and size of the SQL standard means that not all databases implement the entire standard. |
|||
SQL was initially developed at [[IBM]] by [[Donald D. Chamberlin]] and [[Raymond F. Boyce]] after learning about the relational model from [[Edgar F. Codd]]<ref name="Early History"/> in the early 1970s.<ref name="chamberlin-boyce-sequel" /> This version, initially called SEQUEL (Structured English Query Language), was designed to manipulate and retrieve data stored in IBM's original quasirelational 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" /> |
|||
*the standard does not specify database behavior in several important areas (e.g. indexes), leaving it up to implementations of the standard to decide how to behave. |
|||
*the SQL standard precisely specifies the syntax that a conformant database system must implement. However, the standard's specification of the semantics of language constructs is less well-defined, leading to areas of 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. |
|||
*some believe that database vendors feel that the lack of compatibility between database system is intentional in order to ensure [[vendor lock-in]]. |
|||
Chamberlin and Boyce's first attempt at a relational database language was SQUARE (Specifying Queries in A Relational Environment), but it was difficult to use due to subscript/superscript notation. After moving to the San Jose Research Laboratory in 1973, they began work on a sequel to SQUARE.<ref name="Early History"/> The original name SEQUEL, which is widely regarded as a pun on [[QUEL query languages|QUEL]], the query language of [[Ingres (database)|Ingres]],<ref>{{Cite web |last=Starkey |first=Jim |title=Dynamic SQL, Plumbing, and the Internal API |url=https://www.ibphoenix.com/resources/documents/design/doc_123 |access-date=19 January 2023 |website=www.ibphoenix.com |archive-date=19 January 2023 |archive-url=https://web.archive.org/web/20230119035452/https://www.ibphoenix.com/resources/documents/design/doc_123 |url-status=live }}</ref> was later changed to SQL (dropping the vowels) because "SEQUEL" was a [[trademark]] of the UK-based [[Hawker Siddeley]] Dynamics Engineering Limited company.<ref name="oppel-databases" /> The label SQL later became the acronym for Structured Query Language.<ref name="TechTarget">{{Cite web |last=Yasar |first=Kinza |last2=Loshin |first2=Peter |last3=Sirkin |first3=Jessica |title=What is Structured Query Language (SQL)? {{!}} Definition from TechTarget |url=https://www.techtarget.com/searchdatamanagement/definition/SQL |url-status=live |archive-url=https://web.archive.org/web/20250310030105/https://www.techtarget.com/searchdatamanagement/definition/SQL |archive-date=10 March 2025 |access-date=25 March 2025 |website=Search Data Management |publisher=[[Informa TechTarget]]}}</ref> |
|||
As the name implies, SQL is designed for a specific, limited purpose -- querying data contained in a relational database. As such, it is a set-based [[programming language]] rather than a procedural language such as C or [[BASIC programming language|BASIC]], which are designed to solve a much broader set of problems. Language extensions such as [[PL SQL|PL/SQL]] are designed to address this by adding procedural elements to SQL while maintaining SQL's advantages. Another approach is to allow procedural language code to be embedded in and interact with the database. For example, Oracle and others include [[Java programming language|Java]] in the database, while [[PostgreSQL]] allows functions to be written in [[Perl]], [[Tcl]], or C, among other languages. |
|||
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 [[IBM System/38|System/38]], [[IBM SQL/DS|SQL/DS]], and [[IBM Db2]], which were commercially available in 1979, 1981, and 1983, respectively.<ref name="IBM-history" /> |
|||
One joke about SQL is that "SQL is neither Structured, nor a Language." This is (in part) founded on the notion that SQL is not a [[Turing complete]] language. |
|||
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 [[Relational database|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 introduced one of the first commercially available implementations of SQL, [[Oracle Database|Oracle]] V2 (Version2) for [[VAX]] computers. |
|||
==Description of SQL== |
|||
By 1986, [[American National Standards Institute|ANSI]] and [[International Organization for Standardization|ISO]] standard groups officially adopted the standard "Database Language SQL" language definition. New versions of the standard were published in 1989, 1992, 1996, 1999, 2003, 2006, 2008, 2011,<ref name="Early History">{{cite journal|last1=Chamberlin|first1=Donald|title=Early History of SQL|journal=IEEE Annals of the History of Computing|date=2012|volume=34|issue=4|pages=78–82|doi=10.1109/MAHC.2012.61|s2cid=1322572}}</ref> 2016 and most recently, 2023.<ref>{{cite web |title=ISO - ISO/IEC JTC 1/SC 32 - Data management and interchange |url=https://www.iso.org/committee/45342/x/catalogue/p/1/u/0/w/0/d/0 |website=www.iso.org |access-date=2 January 2021 |archive-date=16 March 2017 |archive-url=https://web.archive.org/web/20170316024321/https://www.iso.org/committee/45342/x/catalogue/p/1/u/0/w/0/d/0 |url-status=live }}</ref> |
|||
Like other [[Fourth-generation programming language|database-oriented fourth-generation programming languages]] such as [[Focus software|Focus]] or [[SAS Institute|SAS]], SQL assumes a default [[file structure]], and automates the process of identifying files to the [[operating system]], opening the input file, reading the next record, opening the output file, writing the next record, and closing the files. This allows the user/programmer to concentrate on the details of working with the data within each record, in effect working almost entirely within an implicit [[program loop]] that runs for each record. |
|||
==Interoperability and standardization== |
|||
Compared to [[general-purpose programming language]]s, this structure allows the user/programmer to be less familiar with the technical details of the data and how it is stored, and relatively more familiar with the information contained in the data. This blurs the line between user and programmer, appealing to individuals who fall more into the 'business' or 'research' area and less in the '[[information technology]]' area. This in turn has the double edged result of allowing rapid answers to business or research questions, even ones requring several iterations to get from the initial results to a final answer; but also contributing to the construction of a large body of badly written and impossible to maintain [[source code]]. |
|||
{{SQL language revisions}} |
|||
===Overview=== |
|||
SQL implementations are incompatible between vendors and do not necessarily completely follow standards. In particular, date and time syntax, string concatenation, <code>NULL</code>s, and comparison [[case sensitivity]] vary from vendor to vendor. [[PostgreSQL]]<ref name="About PostgreSQL" /> and [[Mimer SQL]]<ref name="Mimer SQL, Built on Standards" /> strive for standards compliance, though PostgreSQL does not adhere to the standard in all cases. For example, the folding of unquoted names to lower case in PostgreSQL is incompatible with the SQL standard,<ref>{{cite web|url=https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS|title=4.1. Lexical Structure|date=2018|website=PostgreSQL documentation|access-date=11 December 2018|archive-date=5 October 2018|archive-url=https://web.archive.org/web/20181005190818/https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS|url-status=live}}</ref> which says that unquoted names should be folded to upper case.<ref>{{cite web|url=http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt|title=(Second Informal Review Draft) ISO/IEC 9075:1992, Database Language SQL, Section 5.2, syntax rule 11|date=30 July 1992|access-date=8 October 2009|archive-date=21 June 2006|archive-url=https://web.archive.org/web/20060621035823/http://www.contrib.andrew.cmu.edu/%7Eshadow/sql/sql1992.txt|url-status=live}}</ref> Thus, according to the standard, <code>Foo</code> should be equivalent to <code>FOO</code>, not <code>foo</code>. |
|||
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" /><ref name="Ora DATETIME" /> and lacks a <code>TIME</code> type)<ref name="Ora TIME" /> and MS SQL Server (before the 2008 version). As a result, SQL code can rarely be ported between database systems without modifications. |
|||
SQL contrasts with the more powerful [[Fourth-generation programming language|database-oriented fourth-generation programming languages]] such as [[Focus software|Focus]] or [[SAS Institute|SAS]], however, in its relative functional simplicity and simpler command set. This greatly reduces the degree of difficulty involved in maintaining the worst SQL source code, but it also makes programming such questions as 'Who had the top ten scores?' more difficult, leading to the development of procedural extensions, discussed [[#Origins|above]]. However, it also make it possible for SQL source code to be produced (and optimized) by software, leading to the development of a number of natural language database query languages, as well as '[[drag and drop]]' database programming packages with '[[object oriented]]' interfaces. Often these allow the resultant SQL source code to be examined, for educational purposes, further enhancement, or to be used in a different environment. |
|||
===Reasons for incompatibility=== |
|||
==SQL keywords== |
|||
Several reasons for the lack of portability between database systems include: |
|||
SQL keywords fall into several groups. |
|||
* The complexity and size of the SQL standard means that most implementers do not support the entire standard. |
|||
First there are the standard [[Data Manipulation Language]] (DML) elements. DML is the subset of the language used to query a database and add, update and delete data. |
|||
* The SQL standard does not specify the database behavior in some important areas (e.g., [[index (database)|indices]], file storage), leaving implementations to decide how to behave. |
|||
* The SQL standard defers some decisions to individual implementations, such as how to name a results column that was not named explicitly.<ref name="professionals">{{cite book |last1=Date |first1=Chris J. |title=Relational Theory for Computer Professionals: What Relational Databases are Really All About |date=2013 |publisher=O'Reilly Media |location=Sebastopol, Calif |isbn=978-1-449-36943-9 |edition=1.}}</ref>{{rp|207}} |
|||
* 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 newer version of the SQL standard conflicts with the prior behavior of the vendor's database, the vendor may be unwilling to break [[backward compatibility]]. |
|||
* Little commercial incentive exists for vendors to make changing database suppliers easier (see [[vendor lock-in]]). |
|||
* Users evaluating database software tend to place other factors such as performance higher in their priorities than standards conformance. |
|||
===Standardization history=== |
|||
* [[Select (SQL)|<code>SELECT</code>]] is used to retrieve zero or more rows from one or more tables in a database. In most applications, <code>SELECT</code> is the most commonly used DML command. In specifying a <code>SELECT</code> query, the user specifies a description of the desired result set, but they do ''not'' specify what physical operations must be executed to produce that result set. Translating the query into an optimal "query plan" is left to the database system, more specifically to the query optimiser. |
|||
SQL was adopted as a standard by the ANSI in 1986 as SQL-86<ref name="X3H2" /> and the ISO in 1987.<ref name="ISO 9075:1987" /> It is maintained by [[ISO/IEC JTC 1/SC 32|''ISO/IEC JTC 1, Information technology, Subcommittee SC 32, Data management and interchange'']]. |
|||
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 name="Doll" /> |
|||
* <code>[[Insert (SQL)|INSERT]]</code> is used to add zero or more rows (formally tuples) to an existing table. |
|||
The original standard declared that the official pronunciation for "SQL" was an [[initialism]]: {{IPAc-en|ˌ|ɛ|s|ˌ|k|juː|ˈ|ɛ|l}} ("ess cue el").<ref name="SQL-Fundamentals" /> Regardless, many English-speaking database professionals (including Donald Chamberlin himself<ref name="Gillespie" />) use the [[acronym]]-like pronunciation of {{IPAc-en|ˈ|s|iː|k|w|əl}} ("sequel"),<ref name="Melton" /> mirroring the language's prerelease development name, "SEQUEL".<ref name=chamberlin-boyce-sequel /><ref name=oppel-databases /><ref name="Gillespie" /><br> The SQL standard has gone through a number of revisions: |
|||
* <code>[[Update (SQL)|UPDATE]]</code> is used to modify the values of a set of existing table rows. |
|||
{| class="wikitable" style="margin-left: 1.5em;" |
|||
* <code>[[Delete (SQL)|DELETE]]</code> removes zero or more existing rows from a table. |
|||
|+Timeline of SQL language |
|||
|- |
|||
! Year |
|||
! Official standard |
|||
! Informal<br />name |
|||
! Comments |
|||
|- |
|||
| 1986<br />1987 |
|||
| ANSI X3.135:1986<br />[[ISO/IEC 9075]]:1987<br />FIPS PUB 127 |
|||
| [[SQL-86]]<br />SQL-87 |
|||
| First formalized by ANSI, adopted as [[Federal Information Processing Standard|FIPS]] PUB 127 |
|||
|- |
|||
| 1989 |
|||
| ANSI X3.135-1989<br />ISO/IEC 9075:1989<br />FIPS PUB 127-1 |
|||
| [[SQL-89]] |
|||
| Minor revision that added integrity constraints, adopted as FIPS PUB 127-1 |
|||
|- |
|||
| 1992 |
|||
| | ANSI X3.135-1992<br />ISO/IEC 9075:1992<br />FIPS PUB 127-2 |
|||
| [[SQL-92]]<br />SQL2 |
|||
| Major revision (ISO 9075), ''Entry Level'' SQL-92, adopted as FIPS PUB 127-2 |
|||
|- |
|||
| 1999 |
|||
| ISO/IEC 9075:1999 |
|||
| [[SQL:1999]]<br />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, nonscalar types (arrays), and some object-oriented features (e.g., [[structured type]]s), support for embedding SQL in Java ([[SQL/OLB]]) and vice versa ([[SQL/JRT]]) |
|||
|- |
|||
| 2003 |
|||
| ISO/IEC 9075:2003 |
|||
| [[SQL:2003]] |
|||
| Introduced [[XML]]-related features ([[SQL/XML]]), [[SQL window function|window functions]], standardized sequences, and columns with autogenerated values (including identity columns) |
|||
|- |
|||
| 2006 |
|||
| {{nowrap|ISO/IEC 9075-14:2006}} |
|||
| [[SQL:2006]] |
|||
| Adds Part 14, defines ways that SQL can be used 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 lets applications integrate queries into their SQL code with [[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" /> |
|||
|- |
|||
| 2008 |
|||
| ISO/IEC 9075:2008 |
|||
| [[SQL:2008]] |
|||
| Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers, TRUNCATE statement,<ref name="iablog.sybase.com-paulley" /> FETCH clause |
|||
|- |
|||
| 2011 |
|||
| ISO/IEC 9075:2011 |
|||
| [[SQL:2011]] |
|||
| Adds temporal data (PERIOD FOR)<ref name="feature_temporal"/> (more information at [[Temporal database#History]]). Enhancements for [[SQL window function|window functions]] and FETCH clause.<ref name="features_2011"/> |
|||
|- |
|||
| 2016 |
|||
| ISO/IEC 9075:2016 |
|||
| [[SQL:2016]] |
|||
| Adds row pattern matching, polymorphic table functions, operations on [[JSON]] data stored in character string fields |
|||
|- |
|||
| 2019 |
|||
| ISO/IEC 9075-15:2019 |
|||
| [[SQL:2019]] |
|||
| Adds Part 15, multidimensional arrays (MDarray type and operators) |
|||
|- |
|||
| 2023 |
|||
| ISO/IEC 9075:2023 |
|||
| [[SQL:2023]] |
|||
| Adds data type JSON (SQL/Foundation); Adds Part 16, Property Graph Queries (SQL/PGQ) |
|||
|} |
|||
===Current standard=== |
|||
Three other keywords could be said to fall into DML: |
|||
The standard is commonly denoted by the pattern: ''ISO/IEC 9075-n:yyyy Part n: title'', or, as a shortcut, ''[[ISO/IEC 9075]]''. Interested parties may purchase the standards documents from ISO,<ref name="ISO/IEC 9075">{{cite web | url = https://www.iso.org/search.html | title = ISO/IEC 9075 | access-date = 9 August 2022 | archive-date = 12 August 2022 | archive-url = https://web.archive.org/web/20220812025804/https://www.iso.org/search.html | url-status = live }}</ref> IEC, or ANSI. Some old drafts are freely available.<ref name="Andrew" /><ref name="Whitemarsh2" /> |
|||
''[[ISO/IEC 9075]]'' is complemented by ''ISO/IEC 13249: SQL Multimedia and Application Packages'' and some ''Technical reports''. |
|||
* <code>[[BEGIN WORK]]</code> (or <code>[[START TRANSACTION]]</code>, depending on SQL dialect) can be used to mark the start of a [[database transaction]], which either completes completely or not at all. |
|||
==Syntax== |
|||
* <code>[[Commit (SQL)|COMMIT]]</code> causes all data changes in a transaction to be made permanent. |
|||
{{Main|SQL syntax}} |
|||
{{Image frame|content= |
|||
<math> |
|||
\underbrace{\left. \begin{array}{rl} \textstyle\mathtt{UPDATE~clause\mathtt{:}} & \{ \mathtt{UPDATE\ \overbrace{\mathtt{countries}}^\mathtt{table}} \} \\ |
|||
\textstyle\mathtt{SET~clause:} & \{ {\mathtt{SET\ \overbrace{\mathtt{population}}^\mathtt{column} =~} \overbrace{\mathtt{{population} + \underbrace{\mathtt{1}}_\mathtt{literal}}}^\mathtt{expression}} \} \\ |
|||
\textstyle\mathtt{WHERE~clause:} & \{ {\mathtt{WHERE\ \underbrace{\overbrace{\mathtt{name}}^\mathtt{column} \mathtt{=} \overbrace{{\overbrace{\mathtt{'USA'}}^\mathtt{literal}}}^\mathtt{expression}}_\mathtt{predicate}}\}{\texttt{;}}} |
|||
\end{array} |
|||
\right \}{\textstyle\texttt{statement}}}_{\textstyle\mathtt{SQL~query}} |
|||
</math> |
|||
|width=500|caption=A chart showing several of the SQL language elements comprising a single statement}} |
|||
The SQL language is subdivided into several language elements, including: |
|||
* <code>[[Rollback (SQL)|ROLLBACK]]</code> causes all data changes since the last <code>COMMIT</code> or <code>ROLLBACK</code> to be discarded, so that the state of the data is "rolled back" to the way it was prior to those changes being requested. |
|||
* ''Clauses'', which are constituent components of statements and queries. (In some cases, these are optional.)<ref name="ANSI/ISO/IEC" /> |
|||
* ''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 [[Three-valued logic|three-valued logic (3VL)]] (true/false/unknown) or [[Boolean logic|Boolean]] [[truth value]]s and 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 may control [[Database transaction|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. |
|||
==Procedural extensions== |
|||
<code>COMMIT</code> and <code>ROLLBACK</code> interact with areas such as transaction control and locking. Strictly, both terminate any open transaction and release any locks held on data. In the absence of a <code>BEGIN WORK</code> or similar statement, the semantics of SQL are implementation-dependent. |
|||
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 language]], not an [[imperative programming language]] like [[C (programming language)|C]] or [[BASIC]]. However, extensions to Standard SQL add [[procedural programming language]] functionality, such as control-of-flow constructs. |
|||
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. [[Microsoft 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 unmanaged extended stored procedures primarily written in C. [[PostgreSQL]] lets users write functions in a wide variety of languages—including [[Perl]], [[Python (programming language)|Python]], [[Tcl]], [[JavaScript]] (PL/V8) and C.<ref name="PostgreSQL server programming" /> |
|||
The second group of keywords is the [[Data Definition Language]] (DDL). DDL allows the user to define new tables and associated elements. Most commercial SQL databases have proprietary extensions in their DDL, which allow control over proprietary and nonstandard, but usually operationally vital, elements of the specific system. |
|||
==Alternatives== |
|||
The most basic items of DDL are the <code>CREATE</code> and <code>DROP</code> commands. |
|||
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. |
|||
{{Div col}} |
|||
* [[.QL]]: object-oriented Datalog |
|||
* [[4th Dimension (Software)|4D Query Language]] (4D QL) |
|||
* [[Datalog]]: critics suggest that [[Datalog]] has two advantages over SQL: it has cleaner semantics, which facilitates program understanding and maintenance, and it is more expressive, in particular for recursive queries.<ref name="PROLE" /> |
|||
* [[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 Object Oriented Querying|jOOQ]]: SQL implemented in Java as an [[Domain-specific language|internal domain-specific language]] |
|||
* [[Java Persistence Query Language]] (JPQL): The query language used by the Java Persistence API and [[Hibernate (Java)|Hibernate]] persistence library |
|||
* [[JavaScript]]: [[MongoDB]] implements its query language in a JavaScript API. |
|||
* [[Language Integrated Query|LINQ]]: Runs SQL statements written like language constructs to query collections directly from inside [[.NET Framework|.Net]] code |
|||
* [[Object Query Language]] |
|||
* QBE ([[Query By Example]]) created by Moshè Zloof, IBM 1977 |
|||
* [[QUEL query languages|QUEL]] introduced in 1974 by the U.C. Berkeley Ingres project, closer to [[tuple relational calculus]] than SQL |
|||
* [[XQuery]] |
|||
{{Div col end}} |
|||
==Distributed SQL processing== |
|||
* <code>[[Create (SQL)|CREATE]]</code> causes an object (a table, for example) to be created within the database. |
|||
[[DRDA|Distributed Relational Database Architecture]] (DRDA) was designed by a workgroup within IBM from 1988 to 1994. DRDA enables network-connected relational databases to cooperate to fulfill SQL requests.<ref>{{cite journal|last1=Reinsch, R.|title=Distributed database for SAA|journal=IBM Systems Journal|date=1988|volume=27|issue=3|pages=362–389|doi=10.1147/sj.273.0362}}</ref><ref>{{cite book|title=Distributed Relational Database Architecture Reference|date=1990|publisher=IBM Corp. SC26-4651-0}}</ref> |
|||
An interactive user or program can issue SQL statements to a local RDB and receive tables of data and status indicators in reply from remote RDBs. SQL statements can also be compiled and stored in remote RDBs as packages and then invoked by package name. This is important for the efficient operation of application programs that issue complex, high-frequency queries. It is especially important when the tables to be accessed are located in remote systems. |
|||
* <code>[[Drop (SQL)|DROP]]</code> causes an existing object within the database to be deleted, usually irretrievably. |
|||
The messages, protocols, and structural components of DRDA are defined by the [[Distributed Data Management Architecture]]. Distributed SQL processing ala DRDA is distinctive from contemporary [[distributed SQL]] databases. |
|||
Some database systems also have an <code>[[Alter (SQL)|ALTER]]</code> command, which permits the user to modify an existing object in various ways - for example, adding a column to an existing table. |
|||
==Criticisms== |
|||
The third group of SQL keywords is the [[Data Control Language]] (DCL). DCL handles the authorisation aspects of data and permits the user to control who has access to see or manipulate data within the database. |
|||
===Design=== |
|||
SQL deviates in several ways from its theoretical foundation, the relational model and its 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). |
|||
Critics argue that SQL should be replaced with a language that returns strictly to the original foundation: for example, see ''The Third Manifesto'' by Hugh Darwen and C.J. Date (2006, {{ISBN|0-321-39942-0}}). |
|||
===Orthogonality and completeness=== |
|||
Its two main keywords are |
|||
Early specifications did not support major features, such as primary keys. Result sets could not be named, and subqueries had not been defined. These were added in 1992.<ref name="Early History" /> |
|||
The lack of [[sum type]]s has been described as a roadblock to full use of SQL's user-defined types. JSON support, for example, needed to be added by a new standard in 2016.<ref name="Brandon21">{{cite web |last1=Brandon |first1=Jamie |title=Against SQL |url=https://scattered-thoughts.net/writing/against-sql/ |access-date=2 August 2021 |language=en |date=July 2021}}</ref> |
|||
* <code>[[Grant (SQL)|GRANT]]</code> - authorises a user to perform an operation or a set of operations. |
|||
===Null=== |
|||
* <code>[[Revoke (SQL)|REVOKE]]</code> - removes or restricts the capability of a user to perform an operation or a set of operations. |
|||
The concept of [[Null (SQL)|Null]] is the subject of some [[Null (SQL)#Criticisms|debate]]. The Null marker indicates the absence of a value, and is distinct from a value of 0 for an integer column or an empty string for a text column. The concept of Nulls enforces the [[Null (SQL)#Comparisons with NULL and the three-valued logic (3VL)|3-valued-logic in SQL]], which is a concrete implementation of the general [[Three-valued logic|3-valued logic]].<ref name="Early History" /> |
|||
===Duplicates=== |
|||
==Database systems using SQL== |
|||
Another popular criticism is that it allows duplicate rows, making integration with languages such as [[Python (programming language)|Python]], whose data types might make accurately representing the data difficult,<ref name="Early History" /> in terms of parsing and by the absence of modularity. This is usually avoided by declaring a primary key, or a unique constraint, with one or more columns that uniquely identify a row in the table. |
|||
* [[Caché]] |
|||
* [[DB2]] |
|||
* [[Firebird (database server)]] |
|||
* [[Ingres]] |
|||
* [[Informix]] |
|||
* [[InterBase]] |
|||
* [[Microsoft Access]] (or the Microsoft Jet engine) |
|||
* [[Microsoft SQL Server]] |
|||
* [[MySQL]] |
|||
* [[Oracle database|Oracle]] |
|||
* [[PostgreSQL]] |
|||
* [[SQLite]] |
|||
* [[Sybase]] |
|||
== |
===Impedance mismatch=== |
||
In a sense similar to [[object–relational impedance mismatch]], a mismatch occurs between the declarative SQL language and the procedural languages in which SQL is typically embedded.{{Citation needed|date=February 2024}} |
|||
*[http://www.bitesizeinc.net/sql.html BiteSize Inc.'s ''Learn SQL'' tutorial] |
|||
*[http://sqlcourse.com/ Jupitermedia Corporation's online SQL tutorial] |
|||
*[http://sqlzoo.net/ ''A Gentle Introduction to SQL'' by Andrew Cumming] |
|||
*[http://www.dbdebunk.com/ Database Debunking] |
|||
*[http://www.cfxweb.net/modules.php?name=News&file=article&sid=161 SQL for beginners] |
|||
*[http://www.orafaq.com/faqsql.htm Oracle SQL FAQ] |
|||
*[http://www.ispras.ru/~gsql/ GNU SQL Server] |
|||
*[http://www.sql-tutorial.net SQL Tutorial] |
|||
*[http://www.mcjones.org/System_R/SQL_Reunion_95/ History of SQL] |
|||
==SQL data types== |
|||
[[de:SQL]] |
|||
The SQL standard defines three kinds of [[data type]]s (chapter 4.1.1 of SQL/Foundation): |
|||
[[es:SQL]] |
|||
* predefined data types |
|||
[[fr:Structured query language]] |
|||
* constructed types |
|||
[[ku:SQL]] |
|||
* user-defined types. |
|||
[[hu:SQL programozási nyelv]] |
|||
[[ja:SQL]] |
|||
[[nl:SQL]] |
|||
[[pl:SQL]] |
|||
[[ru:SQL]] |
|||
[[fi:SQL]] |
|||
[[sv:SQL]] |
|||
[[zh:SQL]] |
|||
''Constructed types'' are one of ARRAY, MULTISET, REF(erence), or ROW. ''User-defined types'' are comparable to classes in object-oriented language with their own constructors, observers, mutators, methods, inheritance, overloading, overwriting, interfaces, and so on. ''Predefined data types'' are intrinsically supported by the implementation. |
|||
[[Category:Database management systems]] |
|||
[[Category:Domain-specific programming languages]] |
|||
===Predefined data types=== |
|||
[[Category:Query languages]] |
|||
* Character types |
|||
** Character (CHAR) |
|||
** Character varying (VARCHAR) |
|||
** Character large object (CLOB) |
|||
* National character types |
|||
** National character (NCHAR) |
|||
** National character varying (NCHAR VARYING) |
|||
** National character large object (NCLOB) |
|||
* Binary types |
|||
** Binary (BINARY) |
|||
** Binary varying (VARBINARY) |
|||
** Binary large object (BLOB) |
|||
* Numeric types |
|||
** Exact numeric types (NUMERIC, DECIMAL, SMALLINT, INTEGER, BIGINT) |
|||
** Approximate numeric types (FLOAT, REAL, DOUBLE PRECISION) |
|||
** Decimal floating-point type (DECFLOAT) |
|||
* Datetime types (DATE, TIME, TIMESTAMP) |
|||
* Interval type (INTERVAL) |
|||
* Boolean |
|||
* XML (see [[SQL/XML]])<ref>{{Cite web |last= |date=November 2003 |title=SQL 2003 Standard Support in Oracle Database 10g |url=https://www.oracle.com/technetwork/database/sql-2003-twp-129141.pdf |access-date=27 March 2024 |website=Oracle |publisher=[[Oracle Corporation]] |language=en-us |archive-date=27 March 2024 |archive-url=https://web.archive.org/web/20240327155056/https://www.oracle.com/technetwork/database/sql-2003-twp-129141.pdf |url-status=live }} XML supported was added in ANSI SQL 2003, part 14.</ref> |
|||
* [[JSON]] |
|||
==See also== |
|||
{{div col|colwidth=20em}} |
|||
* [[Object database]] |
|||
* [[List of relational database management systems]] |
|||
* [[Comparison of relational database management systems]] |
|||
* [[Comparison of object–relational database management systems]] |
|||
* [[Query by Example]] |
|||
* [[List of SQL reserved words|SQL reserved words]] |
|||
* [[SQL syntax]] |
|||
* [[PL/SQL|Oracle PL/SQL]] |
|||
* [[Transact-SQL|Microsoft Transact-SQL (T-SQL)]] |
|||
* [[Online transaction processing|Online transaction processing (OLTP)]] |
|||
* [[Online analytical processing|Online analytical processing (OLAP)]] |
|||
* [[Data warehouse]] |
|||
* [[Relational data stream management system]] |
|||
* [[NoSQL]] |
|||
* [[MUMPS]] |
|||
* [[Hierarchical database model]] |
|||
* [[Star schema]] |
|||
* [[Snowflake schema]] |
|||
{{div col end}} |
|||
==Notes== |
|||
{{notelist}} |
|||
==References== |
|||
{{Reflist|30em|refs= |
|||
<ref name="ars">{{cite web | last = Paul | first = Ryan | title = A guided tour of the Microsoft Command Shell | url = https://arstechnica.com/business/news/2005/10/msh.ars/4 | website = Ars Technica | date = 24 October 2005 | access-date = 10 April 2011 }}</ref> |
|||
<ref name="iana">{{cite web | url = https://www.iana.org/assignments/media-types/application/sql | title = Media Type registration for application/sql | publisher = [[Internet Assigned Numbers Authority]] | date = 10 April 2013 | access-date = 10 April 2013 | archive-date = 7 May 2013 | archive-url = https://web.archive.org/web/20130507140101/http://www.iana.org/assignments/media-types/application/sql | url-status = live }}</ref> |
|||
<ref name="application/sql">{{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 | doi = 10.17487/RFC6922 | access-date = 10 April 2013 | last1 = Shafranovich | first1 = Y. | archive-date = 13 October 2014 | archive-url = https://web.archive.org/web/20141013172428/http://tools.ietf.org/html/rfc6922 | url-status = live }}</ref> |
|||
<ref name="learningSQL">{{ cite book | last = Beaulieu | first = Alan | title = Learning SQL | editor = Mary E Treseler | publisher = O'Reilly | location = Sebastopol, CA, USA | date = April 2009 | edition = 2nd | isbn = 978-0-596-52083-0 }}</ref> |
|||
<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 | date = June 1970 | doi = 10.1145/362384.362685 | citeseerx = 10.1.1.88.646 | s2cid = 207549016 }}</ref> |
|||
<ref name="SQL-Fundamentals">{{cite news | last = Chapple | first = Mike | title = SQL Fundamentals | work = Databases | publisher = About.com | url = http://databases.about.com/od/sql/a/sqlfundamentals.htm | access-date = 28 January 2009 | archive-date = 22 February 2009 | archive-url = https://web.archive.org/web/20090222225300/http://databases.about.com/od/sql/a/sqlfundamentals.htm | url-status = dead }}</ref> |
|||
<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 = 27 October 2006 | access-date = 10 June 2007 }}</ref> |
|||
<ref name="ISO 9075:1987">{{cite web | url = https://www.iso.org/standard/16661.html | title = ISO 9075:1987: Information technology – Database languages – SQL – Part 1: Framework (SQL/Framework) | date = 1 June 1987 | access-date = 7 May 2019 | archive-date = 7 May 2019 | archive-url = https://web.archive.org/web/20190507214157/https://www.iso.org/standard/16661.html | url-status = live }}</ref> |
|||
<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 | url = http://www.almaden.ibm.com/cs/people/chamberlin/sequel-1974.pdf | access-date = 9 June 2007 | archive-url=https://web.archive.org/web/20070926212100/http://www.almaden.ibm.com/cs/people/chamberlin/sequel-1974.pdf |archive-date=26 September 2007 |url-status=dead }}</ref> |
|||
<ref name="oppel-databases">{{cite book | last = Oppel | first = Andy | title = Databases Demystified | publisher = McGraw-Hill Osborne Media | date = 27 February 2004 | location = [[San Francisco, CA]] | pages = 90–1 | url = http://www.mhprofessional.com/product.php?cat=112&isbn=0071469605 | isbn = 978-0-07-146960-9 | archive-date = 14 January 2012 | access-date = 12 May 2011 | archive-url = https://web.archive.org/web/20120114180544/http://www.mhprofessional.com/product.php?cat=112&isbn=0071469605 | url-status = live }}</ref> |
|||
<ref name="IBM-history">{{cite web | title = History of IBM, 1978 | work = IBM Archives | date = 23 January 2003 | publisher = IBM | url = http://www-03.ibm.com/ibm/history/history/year_1978.html | archive-url = https://web.archive.org/web/20050117192541/http://www-03.ibm.com/ibm/history/history/year_1978.html | url-status = dead | archive-date = 17 January 2005 | access-date = 9 June 2007 }}</ref> |
|||
<ref name="ANSI/ISO/IEC">ANSI/ISO/IEC International Standard (IS). Database Language SQL—Part 2: Foundation (SQL/Foundation). 1999.</ref> |
|||
<ref name="PostgreSQL server programming">{{cite web | 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 | access-date = 9 March 2012 | archive-date = 2 March 2012 | archive-url = https://web.archive.org/web/20120302074948/http://www.postgresql.org/docs/9.1/static/server-programming.html | url-status = live }}</ref> |
|||
<ref name="PROLE">{{cite web |url=http://lbd.udc.es/jornadas2011/actas/PROLE/PROLE/S5/13_article.pdf |title=Outer Joins in a Deductive Database System |author=Fernando Saenz-Perez |website=Lbd.udc.es |access-date=16 January 2017 |archive-date=9 August 2016 |archive-url=https://web.archive.org/web/20160809225439/http://lbd.udc.es/jornadas2011/actas/PROLE/PROLE/S5/13_article.pdf |url-status=live }}</ref> |
|||
<ref name="About PostgreSQL">{{cite web | 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 | access-date = 9 March 2012 | archive-date = 9 March 2012 | archive-url = https://web.archive.org/web/20120309174528/http://www.postgresql.org/about/ | url-status = live }}</ref> |
|||
<ref name="Mimer SQL, Built on Standards">{{cite web | title = Mimer SQL, Built on Standards | work = Mimer SQL official website | publisher = Mimer Information Technology | year = 2009 | url = http://developer.mimer.com/features/feature_6.htm | access-date = 11 December 2018 | archive-date = 3 May 2016 | archive-url = https://web.archive.org/web/20160503020216/http://developer.mimer.com/features/feature_6.htm | url-status = live }}</ref> |
|||
<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 | 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 | orig-year = 1996 | date = October 2010 | access-date = 29 December 2010 | chapter-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 | archive-date = 20 November 2010 | archive-url = https://web.archive.org/web/20101120055711/http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#sthref154 | url-status = live }}</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 | 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 | orig-year = 1996 | date = October 2010 | access-date = 29 December 2010 | chapter-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>... | archive-date = 20 November 2010 | archive-url = https://web.archive.org/web/20101120055711/http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#sthref154 | url-status = live }}</ref> |
|||
<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 | 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 | orig-year = 1996 | date = October 2010 | access-date = 29 December 2010 | chapter-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> | archive-date = 20 November 2010 | archive-url = https://web.archive.org/web/20101120055711/http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#i54335 | url-status = live }}</ref> |
|||
<ref name="X3H2">{{cite book | chapter-url = http://special.lib.umn.edu/findaid/xml/cbi00168.xml | publisher = American National Standards Institute | title = X3H2 Records, 1978–95 | chapter = Finding Aid | archive-date = 19 June 2010 | access-date = 26 April 2008 | archive-url = https://web.archive.org/web/20100619143221/http://special.lib.umn.edu/findaid/xml/cbi00168.xml | url-status = live }}</ref> |
|||
<ref name="Doll">{{cite web | last = Doll | first = Shelley | title = Is SQL a Standard Anymore? | work = TechRepublic's Builder.com | publisher = TechRepublic | date = 19 June 2002 | url = http://articles.techrepublic.com.com/5100-10878_11-1046268.html | access-date = 12 April 2016 | archive-url = https://web.archive.org/web/20120705163024/http://www.techrepublic.com/article/is-sql-a-standard-anymore/1046268 | archive-date = 5 July 2012 }}</ref> |
|||
<ref name="Gillespie">{{cite web | last = Gillespie | first = Patrick | url = http://patorjk.com/blog/2012/01/26/pronouncing-sql-s-q-l-or-sequel/ | title = Pronouncing SQL: S-Q-L or Sequel? | access-date = 12 February 2012 | archive-date = 27 May 2012 | archive-url = https://web.archive.org/web/20120527131959/http://patorjk.com/blog/2012/01/26/pronouncing-sql-s-q-l-or-sequel/ | url-status = live }}</ref> |
|||
<ref name="Melton">{{cite book | title = Understanding the New SQL: A Complete Guide | last = Melton | first = Jim | author2 = Alan R Simon | year = 1993 | publisher = Morgan Kaufmann | isbn = 978-1-55860-245-8 | page = [https://archive.org/details/understandingnew00melt/page/536 536] | chapter = 1.2. What is SQL? | quote = SQL (correctly pronounced "ess cue ell," instead of the somewhat common "sequel")... | chapter-url-access = registration | chapter-url = https://archive.org/details/understandingnew00melt | url = https://archive.org/details/understandingnew00melt/page/536 }}</ref> |
|||
<ref name="SQLXML2006">{{ cite book | title = SQL/XML:2006 - Evaluierung der Standardkonformität ausgewählter Datenbanksysteme | last = Wagner | first = Michael | year = 2010 | publisher = Diplomica Verlag | isbn = 978-3-8366-9609-8 | page = 100 }}</ref> |
|||
<ref name="iablog.sybase.com-paulley">{{ cite web |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/ |url-status=dead |archive-url=https://web.archive.org/web/20110628130925/http://iablog.sybase.com/paulley/2008/07/sql2008-now-an-approved-iso-international-standard/ |archive-date=28 June 2011 }}</ref> |
|||
<ref name="Andrew">{{citation | url = http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt | format = text | title = SQL:1992 draft | access-date = 8 October 2009 | archive-date = 21 June 2006 | archive-url = https://web.archive.org/web/20060621035823/http://www.contrib.andrew.cmu.edu/%7Eshadow/sql/sql1992.txt | url-status = live }}</ref> |
|||
<ref name="Whitemarsh2">{{ citation | url = https://www.wiscorp.com/sql20nn.zip | format = Zip | title = SQL:2011 draft | publisher = Whitemarsh Information Systems Corporation | archive-url = https://web.archive.org/web/20230525220603/https://www.wiscorp.com/sql20nn.zip | archive-date = 25 May 2023 }}</ref> |
|||
<ref name="features_2011">{{ cite web | title = What's new in SQL:2011 | url = https://sigmodrecord.org/publications/sigmodRecord/1203/pdfs/10.industry.zemke.pdf | author = Fred Zemke |publisher=Oracle Corporation | year = 2012 }}</ref> |
|||
<ref name="feature_temporal">{{ cite journal | title = Temporal features in SQL:2011 | url = http://cs.ulb.ac.be/public/_media/teaching/infoh415/tempfeaturessql2011.pdf | author = Krishna Kulkarni, Jan-Eike Michels |journal=SIGMOD Record | date = September 2012 |volume=41 |number=3 }}</ref> |
|||
}} |
|||
==Sources== |
|||
{{Refbegin}} |
|||
* {{cite journal|last = Codd|first = Edgar F|date = June 1970|title = A Relational Model of Data for Large Shared Data Banks|journal = Communications of the ACM|volume = 13|issue = 6|pages = 377–87|doi = 10.1145/362384.362685|s2cid = 207549016|doi-access = free}} |
|||
* [[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== |
|||
* [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. |
|||
{{SQL}} |
|||
{{Navboxes|list= |
|||
{{Databases}} |
|||
{{Programming languages}} |
|||
{{Query languages}} |
|||
{{IBM}} |
|||
{{ISO standards}} |
|||
}} |
|||
{{Subject bar|portal1=Computer programming|commons=Category:Structured Query Language|v=SQL|b=Structured Query Language|d=y}} |
|||
{{Authority control}} |
|||
[[Category:SQL| ]] |
|||
[[Category:Articles with example SQL code]] |
|||
[[Category:Data modeling languages]] |
|||
[[Category:Declarative programming languages]] |
[[Category:Declarative programming languages]] |
||
[[Category:Programming languages with an ISO standard]] |
|||
[[Category:Query languages]] |
|||
[[Category:Relational database management systems]] |
|||
[[Category:Data-centric programming languages]] |
|||
[[Category:Programming languages created in 1974]] |
|||
[[Category:Table-oriented programming]] |
|||
[[Category:Database management systems]] |
Latest revision as of 22:32, 24 May 2025
Paradigm | Declarative |
---|---|
Family | Query language |
Designed by | Donald D. Chamberlin Raymond F. Boyce |
Developer | ISO/IEC JTC 1 (Joint Technical Committee 1) / SC 32 (Subcommittee 32) / WG 3 (Working Group 3) |
First appeared | 1973 |
Stable release | SQL:2023
/ June 2023 |
Typing discipline | Static, strong |
OS | Cross-platform |
Website | www |
Major implementations | |
Many | |
Dialects | |
Influenced by | |
Datalog | |
Influenced | |
CQL, LINQ, SPARQL, SOQL, PowerShell,[1] JPQL, jOOQ, N1QL, GQL | |
|
Filename extension |
.sql |
---|---|
Internet media type | |
Developed by | ISO/IEC |
Initial release | 1986 |
Type of format | Database |
Standard | ISO/IEC 9075 |
Open format? | Yes |
Website | www |
Structured Query Language (SQL) (pronounced /ˌɛsˌkjuˈɛl/ S-Q-L; or alternatively as /ˈsiːkwəl/ ⓘ "sequel") [4][5] is a domain-specific language used to manage data, especially in a relational database management system (RDBMS). It is particularly useful in handling structured data, i.e., data incorporating relations among entities and variables.
Introduced in the 1970s, SQL offered two main advantages over older read–write APIs such as ISAM or VSAM. Firstly, it introduced the concept of accessing many records with one single command. Secondly, it eliminates the need to specify how to reach a record, i.e., with or without an index.
Originally based upon relational algebra and tuple relational calculus, SQL consists of many types of statements,[6] which may be informally classed as sublanguages, commonly: Data query Language (DQL), Data Definition Language (DDL), Data Control Language (DCL), and Data Manipulation Language (DML).[7]
The scope of SQL includes data query, data manipulation (insert, update, and delete), data definition (schema creation and modification), and data access control. Although SQL is essentially a declarative language (4GL), it also includes procedural elements.
SQL was one of the first commercial languages to use Edgar F. Codd's relational model. The model was described in his influential 1970 paper, "A Relational Model of Data for Large Shared Data Banks".[8] Despite not entirely adhering to the relational model as described by Codd, SQL became the most widely used database language.[9][10]
SQL became a standard of the American National Standards Institute (ANSI) in 1986 and of the International Organization for Standardization (ISO) in 1987.[11] Since then, the standard has been revised multiple times to include a larger set of features and incorporate common extensions. Despite the existence of standards, virtually no implementations in existence adhere to it fully, and most SQL code requires at least some changes before being ported to different database systems.
History
[edit]SQL was initially developed at IBM by Donald D. Chamberlin and Raymond F. Boyce after learning about the relational model from Edgar F. Codd[12] 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 quasirelational database management system, System R, which a group at IBM San Jose Research Laboratory had developed during the 1970s.[13]
Chamberlin and Boyce's first attempt at a relational database language was SQUARE (Specifying Queries in A Relational Environment), but it was difficult to use due to subscript/superscript notation. After moving to the San Jose Research Laboratory in 1973, they began work on a sequel to SQUARE.[12] The original name SEQUEL, which is widely regarded as a pun on QUEL, the query language of Ingres,[14] was later changed to SQL (dropping the vowels) because "SEQUEL" was a trademark of the UK-based Hawker Siddeley Dynamics Engineering Limited company.[15] The label SQL later became the acronym for Structured Query Language.[16]
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 IBM Db2, which were commercially available in 1979, 1981, and 1983, respectively.[17]
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 introduced one of the first commercially available implementations of SQL, Oracle V2 (Version2) for VAX computers.
By 1986, ANSI and ISO standard groups officially adopted the standard "Database Language SQL" language definition. New versions of the standard were published in 1989, 1992, 1996, 1999, 2003, 2006, 2008, 2011,[12] 2016 and most recently, 2023.[18]
Interoperability and standardization
[edit]SQL language revisions |
---|
Overview
[edit]SQL implementations are incompatible between vendors and do not necessarily completely follow standards. In particular, date and time syntax, string concatenation, NULL
s, and comparison case sensitivity vary from vendor to vendor. PostgreSQL[19] and Mimer SQL[20] strive for standards compliance, though PostgreSQL does not adhere to the standard in all cases. For example, the folding of unquoted names to lower case in PostgreSQL is incompatible with the SQL standard,[21] which says that unquoted names should be folded to upper case.[22] Thus, according to the standard, Foo
should be equivalent to FOO
, not foo
.
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
,[23][24] and lacks a TIME
type)[25] and MS SQL Server (before the 2008 version). As a result, SQL code can rarely be ported between database systems without modifications.
Reasons for incompatibility
[edit]Several reasons for the lack of portability between database systems include:
- The complexity and size of the SQL standard means that most implementers do not support the entire standard.
- The SQL standard does not specify the database behavior in some important areas (e.g., indices, file storage), leaving implementations to decide how to behave.
- The SQL standard defers some decisions to individual implementations, such as how to name a results column that was not named explicitly.[26]: 207
- 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 newer version of the SQL standard conflicts with the prior behavior of the vendor's database, the vendor may be unwilling to break backward compatibility.
- Little commercial incentive exists for vendors to make changing database suppliers easier (see vendor lock-in).
- Users evaluating database software tend to place other factors such as performance higher in their priorities than standards conformance.
Standardization history
[edit]SQL was adopted as a standard by the ANSI in 1986 as SQL-86[27] and the ISO in 1987.[11] It is maintained by ISO/IEC JTC 1, Information technology, Subcommittee SC 32, Data management and interchange.
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.[28]
The original standard declared that the official pronunciation for "SQL" was an initialism: /ˌɛsˌkjuːˈɛl/ ("ess cue el").[9] Regardless, many English-speaking database professionals (including Donald Chamberlin himself[29]) use the acronym-like pronunciation of /ˈsiːkwəl/ ("sequel"),[30] mirroring the language's prerelease development name, "SEQUEL".[13][15][29]
The SQL standard has gone through a number of revisions:
Year | Official standard | Informal name |
Comments |
---|---|---|---|
1986 1987 |
ANSI X3.135:1986 ISO/IEC 9075:1987 FIPS PUB 127 |
SQL-86 SQL-87 |
First formalized by ANSI, adopted as FIPS PUB 127 |
1989 | ANSI X3.135-1989 ISO/IEC 9075:1989 FIPS PUB 127-1 |
SQL-89 | Minor revision that added integrity constraints, adopted as FIPS PUB 127-1 |
1992 | ANSI X3.135-1992 ISO/IEC 9075:1992 FIPS PUB 127-2 |
SQL-92 SQL2 |
Major revision (ISO 9075), Entry Level SQL-92, adopted as FIPS PUB 127-2 |
1999 | ISO/IEC 9075:1999 | SQL:1999 SQL3 |
Added regular expression matching, recursive queries (e.g., transitive closure), triggers, support for procedural and control-of-flow statements, nonscalar types (arrays), and some object-oriented features (e.g., structured types), support for embedding SQL in Java (SQL/OLB) and vice versa (SQL/JRT) |
2003 | ISO/IEC 9075:2003 | SQL:2003 | Introduced XML-related features (SQL/XML), window functions, standardized sequences, and columns with autogenerated values (including identity columns) |
2006 | ISO/IEC 9075-14:2006 | SQL:2006 | Adds Part 14, defines ways that SQL can be used 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 lets applications integrate queries into their SQL code with XQuery, the XML Query Language published by the World Wide Web Consortium (W3C), to concurrently access ordinary SQL-data and XML documents.[31] |
2008 | ISO/IEC 9075:2008 | SQL:2008 | Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers, TRUNCATE statement,[32] FETCH clause |
2011 | ISO/IEC 9075:2011 | SQL:2011 | Adds temporal data (PERIOD FOR)[33] (more information at Temporal database#History). Enhancements for window functions and FETCH clause.[34] |
2016 | ISO/IEC 9075:2016 | SQL:2016 | Adds row pattern matching, polymorphic table functions, operations on JSON data stored in character string fields |
2019 | ISO/IEC 9075-15:2019 | SQL:2019 | Adds Part 15, multidimensional arrays (MDarray type and operators) |
2023 | ISO/IEC 9075:2023 | SQL:2023 | Adds data type JSON (SQL/Foundation); Adds Part 16, Property Graph Queries (SQL/PGQ) |
Current standard
[edit]The standard is commonly denoted by the pattern: ISO/IEC 9075-n:yyyy Part n: title, or, as a shortcut, ISO/IEC 9075. Interested parties may purchase the standards documents from ISO,[35] IEC, or ANSI. Some old drafts are freely available.[36][37]
ISO/IEC 9075 is complemented by ISO/IEC 13249: SQL Multimedia and Application Packages and some Technical reports.
Syntax
[edit]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.)[38]
- 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 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 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.
Procedural extensions
[edit]SQL is designed for a specific purpose: to query data contained in a relational database. SQL is a set-based, declarative programming language, not an imperative programming language like C or BASIC. However, extensions to Standard SQL add procedural programming language functionality, such as control-of-flow constructs.
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. Microsoft SQL Server 2005 uses the SQLCLR (SQL Server Common Language Runtime) to host managed .NET assemblies in the database, while prior versions of SQL Server were restricted to unmanaged extended stored procedures primarily written in C. PostgreSQL lets users write functions in a wide variety of languages—including Perl, Python, Tcl, JavaScript (PL/V8) and C.[39]
Alternatives
[edit]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
- 4D Query Language (4D QL)
- Datalog: critics suggest that Datalog has two advantages over SQL: it has cleaner semantics, which facilitates program understanding and maintenance, and it is more expressive, in particular for recursive queries.[40]
- HTSQL: URL based query method
- IBM Business System 12 (IBM BS12): one of the first fully relational database management systems, introduced in 1982
- ISBL
- jOOQ: SQL implemented in Java as an internal domain-specific language
- Java Persistence Query Language (JPQL): The query language used by the Java Persistence API and Hibernate persistence library
- JavaScript: MongoDB implements its query language in a JavaScript API.
- LINQ: Runs SQL statements written like language constructs to query collections directly from inside .Net code
- Object Query Language
- QBE (Query By Example) created by Moshè Zloof, IBM 1977
- QUEL introduced in 1974 by the U.C. Berkeley Ingres project, closer to tuple relational calculus than SQL
- XQuery
Distributed SQL processing
[edit]Distributed Relational Database Architecture (DRDA) was designed by a workgroup within IBM from 1988 to 1994. DRDA enables network-connected relational databases to cooperate to fulfill SQL requests.[41][42]
An interactive user or program can issue SQL statements to a local RDB and receive tables of data and status indicators in reply from remote RDBs. SQL statements can also be compiled and stored in remote RDBs as packages and then invoked by package name. This is important for the efficient operation of application programs that issue complex, high-frequency queries. It is especially important when the tables to be accessed are located in remote systems.
The messages, protocols, and structural components of DRDA are defined by the Distributed Data Management Architecture. Distributed SQL processing ala DRDA is distinctive from contemporary distributed SQL databases.
Criticisms
[edit]Design
[edit]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). Critics argue that SQL should be replaced with a language that returns strictly to the original foundation: for example, see The Third Manifesto by Hugh Darwen and C.J. Date (2006, ISBN 0-321-39942-0).
Orthogonality and completeness
[edit]Early specifications did not support major features, such as primary keys. Result sets could not be named, and subqueries had not been defined. These were added in 1992.[12]
The lack of sum types has been described as a roadblock to full use of SQL's user-defined types. JSON support, for example, needed to be added by a new standard in 2016.[43]
Null
[edit]The concept of Null is the subject of some debate. The Null marker indicates the absence of a value, and is distinct from a value of 0 for an integer column or an empty string for a text column. The concept of Nulls enforces the 3-valued-logic in SQL, which is a concrete implementation of the general 3-valued logic.[12]
Duplicates
[edit]Another popular criticism is that it allows duplicate rows, making integration with languages such as Python, whose data types might make accurately representing the data difficult,[12] in terms of parsing and by the absence of modularity. This is usually avoided by declaring a primary key, or a unique constraint, with one or more columns that uniquely identify a row in the table.
Impedance mismatch
[edit]In a sense similar to object–relational impedance mismatch, a mismatch occurs between the declarative SQL language and the procedural languages in which SQL is typically embedded.[citation needed]
SQL data types
[edit]The SQL standard defines three kinds of data types (chapter 4.1.1 of SQL/Foundation):
- predefined data types
- constructed types
- user-defined types.
Constructed types are one of ARRAY, MULTISET, REF(erence), or ROW. User-defined types are comparable to classes in object-oriented language with their own constructors, observers, mutators, methods, inheritance, overloading, overwriting, interfaces, and so on. Predefined data types are intrinsically supported by the implementation.
Predefined data types
[edit]- Character types
- Character (CHAR)
- Character varying (VARCHAR)
- Character large object (CLOB)
- National character types
- National character (NCHAR)
- National character varying (NCHAR VARYING)
- National character large object (NCLOB)
- Binary types
- Binary (BINARY)
- Binary varying (VARBINARY)
- Binary large object (BLOB)
- Numeric types
- Exact numeric types (NUMERIC, DECIMAL, SMALLINT, INTEGER, BIGINT)
- Approximate numeric types (FLOAT, REAL, DOUBLE PRECISION)
- Decimal floating-point type (DECFLOAT)
- Datetime types (DATE, TIME, TIMESTAMP)
- Interval type (INTERVAL)
- Boolean
- XML (see SQL/XML)[44]
- JSON
See also
[edit]- Object database
- List of relational database management systems
- Comparison of relational database management systems
- Comparison of object–relational database management systems
- Query by Example
- SQL reserved words
- SQL syntax
- Oracle PL/SQL
- Microsoft Transact-SQL (T-SQL)
- Online transaction processing (OLTP)
- Online analytical processing (OLAP)
- Data warehouse
- Relational data stream management system
- NoSQL
- MUMPS
- Hierarchical database model
- Star schema
- Snowflake schema
Notes
[edit]References
[edit]- ^ Paul, Ryan (24 October 2005). "A guided tour of the Microsoft Command Shell". Ars Technica. Retrieved 10 April 2011.
- ^ "Media Type registration for application/sql". Internet Assigned Numbers Authority. 10 April 2013. Archived from the original on 7 May 2013. Retrieved 10 April 2013.
- ^ Shafranovich, Y. (April 2013). "The application/sql Media Type, RFC 6922". Internet Engineering Task Force. p. 3. doi:10.17487/RFC6922. Archived from the original on 13 October 2014. Retrieved 10 April 2013.
- ^ Beaulieu, Alan (April 2009). Mary E Treseler (ed.). Learning SQL (2nd ed.). Sebastopol, CA, USA: O'Reilly. ISBN 978-0-596-52083-0.
- ^ Chamberlin, Donald D.; Frana, Philip L. (3 October 2001). "Oral history interview with Donald D. Chamberlin". University Digital Conservancy. hdl:11299/107215. Archived from the original on 24 February 2020. Retrieved 14 January 2020.
We changed the original name "SEQUEL" to SQL because we got a letter from somebody's lawyer that said the name "SEQUEL" belonged to them. We shortened it to SQL, for Structured Query Language, and the product was known as SQL/DS.
- ^ SQL-92, 4.22 SQL-statements, 4.22.1 Classes of SQL-statements "There are at least five ways of classifying SQL-statements:", 4.22.2, SQL statements classified by function "The following are the main classes of SQL-statements:"; SQL:2003 4.11 SQL-statements, and later revisions.
- ^ Chatham, Mark (2012). Structured Query Language By Example - Volume I: Data Query Language. Lulu.com. p. 8. ISBN 9781291199512.
- ^ Codd, Edgar F. (June 1970). "A Relational Model of Data for Large Shared Data Banks". Communications of the ACM. 13 (6): 377–87. CiteSeerX 10.1.1.88.646. doi:10.1145/362384.362685. S2CID 207549016.
- ^ a b Chapple, Mike. "SQL Fundamentals". Databases. About.com. Archived from the original on 22 February 2009. Retrieved 28 January 2009.
- ^ "Structured Query Language (SQL)". International Business Machines. 27 October 2006. Retrieved 10 June 2007.
- ^ a b "ISO 9075:1987: Information technology – Database languages – SQL – Part 1: Framework (SQL/Framework)". 1 June 1987. Archived from the original on 7 May 2019. Retrieved 7 May 2019.
- ^ a b c d e f Chamberlin, Donald (2012). "Early History of SQL". IEEE Annals of the History of Computing. 34 (4): 78–82. doi:10.1109/MAHC.2012.61. S2CID 1322572.
- ^ a b c 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. Archived from the original (PDF) on 26 September 2007. Retrieved 9 June 2007.
- ^ Starkey, Jim. "Dynamic SQL, Plumbing, and the Internal API". www.ibphoenix.com. Archived from the original on 19 January 2023. Retrieved 19 January 2023.
- ^ a b Oppel, Andy (27 February 2004). Databases Demystified. San Francisco, CA: McGraw-Hill Osborne Media. pp. 90–1. ISBN 978-0-07-146960-9. Archived from the original on 14 January 2012. Retrieved 12 May 2011.
- ^ Yasar, Kinza; Loshin, Peter; Sirkin, Jessica. "What is Structured Query Language (SQL)? | Definition from TechTarget". Search Data Management. Informa TechTarget. Archived from the original on 10 March 2025. Retrieved 25 March 2025.
- ^ "History of IBM, 1978". IBM Archives. IBM. 23 January 2003. Archived from the original on 17 January 2005. Retrieved 9 June 2007.
- ^ "ISO - ISO/IEC JTC 1/SC 32 - Data management and interchange". www.iso.org. Archived from the original on 16 March 2017. Retrieved 2 January 2021.
- ^ "About PostgreSQL". PostgreSQL 9.1 official website. PostgreSQL Global Development Group. 2012. Archived from the original on 9 March 2012. Retrieved 9 March 2012.
PostgreSQL prides itself in standards compliance. Its SQL implementation strongly conforms to the ANSI-SQL:2008 standard
- ^ "Mimer SQL, Built on Standards". Mimer SQL official website. Mimer Information Technology. 2009. Archived from the original on 3 May 2016. Retrieved 11 December 2018.
- ^ "4.1. Lexical Structure". PostgreSQL documentation. 2018. Archived from the original on 5 October 2018. Retrieved 11 December 2018.
- ^ "(Second Informal Review Draft) ISO/IEC 9075:1992, Database Language SQL, Section 5.2, syntax rule 11". 30 July 1992. Archived from the original on 21 June 2006. Retrieved 8 October 2009.
- ^ 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. Archived from the original on 20 November 2010. Retrieved 29 December 2010.
For each
DATE
value, Oracle stores the following information: century, year, month, date, hour, minute, and second - ^ 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. Archived from the original on 20 November 2010. Retrieved 29 December 2010.
The datetime data types are
DATE
... - ^ 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. Archived from the original on 20 November 2010. Retrieved 29 December 2010.
Do not define columns with the following SQL/DS and DB2 data types, because they have no corresponding Oracle data type:...
TIME
- ^ Date, Chris J. (2013). Relational Theory for Computer Professionals: What Relational Databases are Really All About (1. ed.). Sebastopol, Calif: O'Reilly Media. ISBN 978-1-449-36943-9.
- ^ "Finding Aid". X3H2 Records, 1978–95. American National Standards Institute. Archived from the original on 19 June 2010. Retrieved 26 April 2008.
- ^ Doll, Shelley (19 June 2002). "Is SQL a Standard Anymore?". TechRepublic's Builder.com. TechRepublic. Archived from the original on 5 July 2012. Retrieved 12 April 2016.
- ^ a b Gillespie, Patrick. "Pronouncing SQL: S-Q-L or Sequel?". Archived from the original on 27 May 2012. Retrieved 12 February 2012.
- ^ Melton, Jim; Alan R Simon (1993). "1.2. What is SQL?". Understanding the New SQL: A Complete Guide. Morgan Kaufmann. p. 536. ISBN 978-1-55860-245-8.
SQL (correctly pronounced "ess cue ell," instead of the somewhat common "sequel")...
- ^ Wagner, Michael (2010). SQL/XML:2006 - Evaluierung der Standardkonformität ausgewählter Datenbanksysteme. Diplomica Verlag. p. 100. ISBN 978-3-8366-9609-8.
- ^ "SQL:2008 now an approved ISO international standard". Sybase. July 2008. Archived from the original on 28 June 2011.
- ^ Krishna Kulkarni, Jan-Eike Michels (September 2012). "Temporal features in SQL:2011" (PDF). SIGMOD Record. 41 (3).
- ^ Fred Zemke (2012). "What's new in SQL:2011" (PDF). Oracle Corporation.
- ^ "ISO/IEC 9075". Archived from the original on 12 August 2022. Retrieved 9 August 2022.
- ^ SQL:1992 draft (text), archived from the original on 21 June 2006, retrieved 8 October 2009
- ^ SQL:2011 draft, Whitemarsh Information Systems Corporation, archived from the original (Zip) on 25 May 2023
- ^ ANSI/ISO/IEC International Standard (IS). Database Language SQL—Part 2: Foundation (SQL/Foundation). 1999.
- ^ "PostgreSQL server programming". PostgreSQL 9.1 official documentation. postgresql.org. 2011. Archived from the original on 2 March 2012. Retrieved 9 March 2012.
- ^ Fernando Saenz-Perez. "Outer Joins in a Deductive Database System" (PDF). Lbd.udc.es. Archived (PDF) from the original on 9 August 2016. Retrieved 16 January 2017.
- ^ Reinsch, R. (1988). "Distributed database for SAA". IBM Systems Journal. 27 (3): 362–389. doi:10.1147/sj.273.0362.
- ^ Distributed Relational Database Architecture Reference. IBM Corp. SC26-4651-0. 1990.
- ^ Brandon, Jamie (July 2021). "Against SQL". Retrieved 2 August 2021.
- ^ "SQL 2003 Standard Support in Oracle Database 10g" (PDF). Oracle. Oracle Corporation. November 2003. Archived (PDF) from the original on 27 March 2024. Retrieved 27 March 2024. XML supported was added in ANSI SQL 2003, part 14.
Sources
[edit]- Codd, Edgar F (June 1970). "A Relational Model of Data for Large Shared Data Banks". Communications of the ACM. 13 (6): 377–87. doi:10.1145/362384.362685. S2CID 207549016.
- 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
External links
[edit]- 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.
- American National Standards Institute. X3H2 Records, 1978–1995 Charles Babbage Institute Collection documents the H2 committee's development of the NDL and SQL standards.
- 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.