Structured Query Language (SQL) (/ˌɛsˌkjuːˈɛl/(listen)S-Q-L, sometimes /ˈsiːkwəl/ "sequel" for historical reasons)[4][5] is a domain-specific language used in programming and designed for managing data held in a relational database management system (RDBMS), or for stream processing in a relational data stream management system (RDSMS). 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: a data query language (DQL),[lower-alpha 1] a data definition language (DDL),[lower-alpha 2] a data control language (DCL), and a data manipulation language (DML).[lower-alpha 3][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.
Contents
1History
2Syntax
3Procedural extensions
4Interoperability and standardization
4.1Overview
4.2Reasons for incompatibility
4.3Standardization history
4.4Current standard
5Alternatives
6Distributed SQL processing
7Criticisms
7.1Design
7.2Orthogonality and completeness
7.3Null
7.4Duplicates
7.5Impedance mismatch
8SQL data types
8.1Predefined data types
9See also
10Notes
11References
12Sources
13External links
History
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.
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.[16]
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.[17]
A chart showing several of the SQL language elements comprising 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.)[18]
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
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.[19]
Interoperability and standardization
Overview
SQL implementations are incompatible between vendors and do not necessarily completely follow standards. In particular, date and time syntax, string concatenation, NULLs, and comparison case sensitivity vary from vendor to vendor. PostgreSQL[20] and Mimer SQL[21] 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,[22] which says that unquoted names should be folded to upper case.[23] Thus, Foo should be equivalent to FOO not foo according to the standard.
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,[24][25] and lacks a TIME type)[26] 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
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.[27]: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
SQL was adopted as a standard by the ANSI in 1986 as SQL-86[28] 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.[29]
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[30]) use the acronym-like pronunciation of /ˈsiːkwəl/ ("sequel"),[31] mirroring the language's prerelease development name, "SEQUEL".[13][15][30] 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 that added 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
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
2003
Introduced XML-related features (SQL/XML), window functions, standardized sequences, and columns with autogenerated values (including identity columns)
2006
2006
ISO/IEC 9075-14:2006 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.[32]
2008
2008
Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers, TRUNCATE statement,[33] FETCH clause
2011
2011
Adds temporal data (PERIOD FOR)[34] (more information at Temporal database). Enhancements for window functions and FETCH clause.[35]
2016
2016
Adds row pattern matching, polymorphic table functions, operations on JSON data stored in character string fields
2019
SQL:2019-2020
Adds Part 15, multidimensional arrays (MDarray type and operators)
2023
2023
Adds data type JSON (SQL/Foundation); Adds Part 16, Property Graph Queries (SQL/PGQ)
Current standard
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,[36] IEC, or ANSI. Some old drafts are freely available.[37][38][39]
ISO/IEC 9075 is complemented by ISO/IEC 13249: SQL Multimedia and Application Packages and some Technical reports.
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
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
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
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 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
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
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
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
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.
SQL data types
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.
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
↑Formally, "SQL-data" statements excluding "SQL-data change" statements; this is primarily the Select statement.
↑Formally, "SQL-schema" statements.
↑Formally, "SQL-data change" statements
References
↑Paul, Ryan (24 October 2005). "A guided tour of the Microsoft Command Shell". https://arstechnica.com/business/news/2005/10/msh.ars/4.
↑"Media Type registration for application/sql". Internet Assigned Numbers Authority. 10 April 2013. https://www.iana.org/assignments/media-types/application/sql.
↑Shafranovich, Y. (April 2013). "The application/sql Media Type, RFC 6922". Internet Engineering Task Force. p. 3. doi:10.17487/RFC6922. http://tools.ietf.org/html/rfc6922.
↑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. (2001-10-03). "Oral history interview with Donald D. Chamberlin". https://conservancy.umn.edu/handle/11299/107215. "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:"; 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. https://books.google.com/books?id=64MBBAAAQBAJ&pg=PA8.
↑Codd, Edgar F. (June 1970). "A Relational Model of Data for Large Shared Data Banks". Communications of the ACM13 (6): 377–87. doi:10.1145/362384.362685.
↑"Structured Query Language (SQL)". International Business Machines. October 27, 2006. http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=com.ibm.db2.udb.admin.doc/doc/c0004100.htm.
↑ 11.011.1"ISO 9075:1987: Information technology – Database languages – SQL – Part 1: Framework (SQL/Framework)". 1987-06-01. https://www.iso.org/standard/16661.html.
↑ 12.012.112.212.312.412.5Chamberlin, Donald (2012). "Early History of SQL". IEEE Annals of the History of Computing34 (4): 78–82. doi:10.1109/MAHC.2012.61.
↑ 13.013.113.2Chamberlin, Donald D; Boyce, Raymond F (1974). "SEQUEL: A Structured English Query Language". Proceedings of the 1974 ACM SIGFIDET Workshop on Data Description, Access and Control (Association for Computing Machinery): 249–64. http://www.almaden.ibm.com/cs/people/chamberlin/sequel-1974.pdf. Retrieved 2007-06-09.
↑Starkey, Jim. "Dynamic SQL, Plumbing, and the Internal API". https://www.ibphoenix.com/resources/documents/design/doc_123.
↑ 15.015.1Oppel, Andy (February 27, 2004). Databases Demystified. San Francisco, CA: McGraw-Hill Osborne Media. pp. 90–1. ISBN 978-0-07-146960-9. http://www.mhprofessional.com/product.php?cat=112&isbn=0071469605.
↑"History of IBM, 1978". IBM Archives. IBM. 23 January 2003. http://www-03.ibm.com/ibm/history/history/year_1978.html.
↑"ISO - ISO/IEC JTC 1/SC 32 - Data management and interchange". https://www.iso.org/committee/45342/x/catalogue/p/1/u/0/w/0/d/0.
↑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. http://www.postgresql.org/docs/9.1/static/server-programming.html.
↑"About PostgreSQL". PostgreSQL 9.1 official website. PostgreSQL Global Development Group. 2012. http://www.postgresql.org/about/. "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. http://developer.mimer.com/features/feature_6.htm.
↑"(Second Informal Review Draft) ISO/IEC 9075:1992, Database Language SQL, Section 5.2, syntax rule 11". 30 July 1992. http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt.
↑Lorentz, Diana; Roeser, Mary Beth; Abraham, Sundeep; Amor, Angela; Arora, Geeta; Arora, Vikas; Ashdown, Lance; Baer, Hermann et al. (October 2010). "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. http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#sthref154. Retrieved December 29, 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 et al. (October 2010). "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. http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#sthref154. Retrieved December 29, 2010. "The datetime data types are DATE..."
↑Lorentz, Diana; Roeser, Mary Beth; Abraham, Sundeep; Amor, Angela; Arora, Geeta; Arora, Vikas; Ashdown, Lance; Baer, Hermann et al. (October 2010). "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. http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements001.htm#i54335. 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"
↑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. http://special.lib.umn.edu/findaid/xml/cbi00168.xml.
↑Doll, Shelley (June 19, 2002). "Is SQL a Standard Anymore?". TechRepublic's Builder.com. TechRepublic. http://articles.techrepublic.com.com/5100-10878_11-1046268.html.
↑ 30.030.1Gillespie, Patrick. "Pronouncing SQL: S-Q-L or Sequel?". http://patorjk.com/blog/2012/01/26/pronouncing-sql-s-q-l-or-sequel/.
↑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. https://archive.org/details/understandingnew00melt. "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. http://iablog.sybase.com/paulley/2008/07/sql2008-now-an-approved-iso-international-standard/.
↑Krishna Kulkarni, Jan-Eike Michels (September 2012). "Temporal features in SQL:2011". SIGMOD Record41 (3). http://cs.ulb.ac.be/public/_media/teaching/infoh415/tempfeaturessql2011.pdf.
↑Fred Zemke (2012). "What's new in SQL:2011". Oracle Corporation. https://sigmodrecord.org/publications/sigmodRecord/1203/pdfs/10.industry.zemke.pdf.
↑ (Zip) SQL:2008 draft, Whitemarsh Information Systems Corporation, http://www.wiscorp.com/sql200n.zip
↑ (Zip) SQL:2011 draft, Whitemarsh Information Systems Corporation, http://www.wiscorp.com/sql20nn.zip
↑Fernando Saenz-Perez. "Outer Joins in a Deductive Database System". http://lbd.udc.es/jornadas2011/actas/PROLE/PROLE/S5/13_article.pdf.
↑Reinsch, R. (1988). "Distributed database for SAA". IBM Systems Journal27 (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" (in en). https://scattered-thoughts.net/writing/against-sql/.
Sources
Codd, Edgar F (June 1970). "A Relational Model of Data for Large Shared Data Banks". Communications of the ACM13 (6): 377–87. doi:10.1145/362384.362685.
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
SQLat Wikipedia's sister projects
Definitions from Wiktionary
Media from Wikimedia Commons
Textbooks from Wikibooks
Resources from Wikiversity
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.
Links to related articles
v
t
e
Database management systems
Types
Object-oriented
comparison
Relational
comparison
Document-oriented
Graph
NoSQL
NewSQL
Concepts
Database
ACID
Armstrong's axioms
CAP theorem
CRUD
Null
Candidate key
Foreign key
Superkey
Surrogate key
Unique key
Objects
Relation
table
column
row
View
Transaction
Transaction log
Trigger
Index
Stored procedure
Cursor
Partition
Components
Concurrency control
Data dictionary
JDBC
XQJ
ODBC
Query language
Query optimizer
Query rewriting system
Query plan
Functions
Administration
Query optimization
Replication
Related topics
Database models
Database normalization
Database storage
Distributed database
Federated database system
Referential integrity
Relational algebra
Relational calculus
Relational database
Relational model
Object-relational database
Transaction processing
v
t
e
Programming languages
Comparison
Timeline
History
APL
Assembly
BASIC
C
C++
C#
COBOL
Elixir
Fortran
Go
Groovy
Haskell
Java
JavaScript (JS)
Julia
Kotlin
Lisp
Lua
MATLAB
Objective-C
OCaml
Pascal
Perl
PHP
Python
R
Ruby
Rust
Scala
Shell
Smalltalk
Swift
TypeScript
Visual Basic .NET (VB.NET)
more...
Category
Lists
Alphabetical
Categorical
Generational
Non-English-based
v
t
e
ISO standards by standard number
List of ISO standards / ISO romanizations / IEC standards
1–9999
1
2
3
4
5
6
7
9
16
17
31
-0
-1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
128
216
217
226
228
233
259
269
302
306
361
428
500
518
519
639
-1
-2
-3
-5
-6
646
657
668
690
704
732
764
838
843
860
898
965
999
1000
1004
1007
1073-1
1155
1413
1538
1629
1745
1989
2014
2015
2022
2033
2047
2108
2145
2146
2240
2281
2533
2709
2711
2720
2788
2848
2852
3029
3103
3166
-1
-2
-3
3297
3307
3601
3602
3864
3901
3950
3977
4031
4157
4165
4217
4909
5218
5426
5427
5428
5725
5775
5776
5800
5807
5964
6166
6344
6346
6385
6425
6429
6438
6523
6709
6943
7001
7002
7010
7027
7064
7098
7185
7200
7498
-1
7637
7736
7810
7811
7812
7813
7816
7942
8000
8093
8178
8217
8373
8501-1
8571
8583
8601
8613
8632
8651
8652
8691
8805/8806
8807
8820-5
8859
-1
-2
-3
-4
-5
-6
-7
-8
-8-I
-9
-10
-11
-12
-13
-14
-15
-16
8879
9000/9001
9036
9075
9126
9141
9227
9241
9293
9314
9362
9407
9506
9529
9564
9592/9593
9594
9660
9797-1
9897
9899
9945
9984
9985
9995
10000–19999
10005
10006
10007
10116
10118-3
10160
10161
10165
10179
10206
10218
10303
-11
-21
-22
-28
-238
10383
10487
10585
10589
10646
10664
10746
10861
10957
10962
10967
11073
11170
11179
11404
11544
11783
11784
11785
11801
11898
11940 (-2)
11941
11941 (TR)
11992
12006
12182
12207
12234-2
13211
-1
-2
13216
13250
13399
13406-2
13450
13485
13490
13567
13568
13584
13616
14000
14031
14224
14289
14396
14443
14496
-2
-3
-6
-10
-11
-12
-14
-17
-20
14644
14649
14651
14698
14750
14764
14882
14971
15022
15189
15288
15291
15292
15398
15408
15444
-3
15445
15438
15504
15511
15686
15693
15706
-2
15707
15897
15919
15924
15926
15926 WIP
15930
16023
16262
16355-1
16612-2
16750
16949 (TS)
17024
17025
17100
17203
17369
17442
17799
18000
18004
18014
18245
18629
18916
19005
19011
19092 (-1
-2)
19114
19115
19125
19136
19407
19439
19500
19501
19502
19503
19505
19506
19507
19508
19509
19510
19600
19752
19757
19770
19775-1
19794-5
19831
20000+
20000
20022
20121
20400
21000
21047
21500
21827:2002
22000
23270
23271
23360
24517
24613
24617
24707
25178
25964
26000
26262
26300
26324
27000 series
27000
27001
27002
27006
27729
28000
29110
29148
29199-2
29500
30170
31000
32000
37001
38500
40500
42010
45001
50001
55000
80000
-1
-2
-3
Category
0.00
(0 votes)
Original source: https://en.wikipedia.org/wiki/SQL. Read more