SQL: Difference between revisions
→Standardization: Standardization is not a subsection of criticism. |
|||
Line 470: | Line 470: | ||
* Software vendors often desire to create incompatibilities with other products, as it provides a strong incentive for their existing users to remain loyal (see [[vendor lock-in]]). |
* Software vendors often desire to create incompatibilities with other products, as it provides a strong incentive for their existing users to remain loyal (see [[vendor lock-in]]). |
||
== Standardization == |
|||
SQL was adopted as a standard by the [[American National Standards Institute]] (ANSI) in 1986 as SQL-86<ref>[http://special.lib.umn.edu/findaid/xml/cbi00168.xml American National Standards Institute. X3H2 Records, 1978-1995. Finding Aid.]</ref> and [[International Organization for Standardization]] (ISO) in 1987. The original SQL standard declared that the official pronunciation for SQL is "es queue el".<ref name="SQL-Fundamentals">{{cite web |
SQL was adopted as a standard by the [[American National Standards Institute]] (ANSI) in 1986 as SQL-86<ref>[http://special.lib.umn.edu/findaid/xml/cbi00168.xml American National Standards Institute. X3H2 Records, 1978-1995. Finding Aid.]</ref> and [[International Organization for Standardization]] (ISO) in 1987. The original SQL standard declared that the official pronunciation for SQL is "es queue el".<ref name="SQL-Fundamentals">{{cite web |
||
| last = Chapple |
| last = Chapple |
Revision as of 10:12, 4 January 2010
Paradigm | Multi-paradigm |
---|---|
Designed by | Donald D. Chamberlin and Raymond F. Boyce |
Developer | IBM |
First appeared | 1974 |
Stable release | SQL:2008
/ 2008 |
Typing discipline | Static, strong |
OS | Cross-platform |
Website | www |
Major implementations | |
Many | |
Dialects | |
SQL-86, SQL-89, SQL-92, SQL:1999, SQL:2003, SQL:2008 | |
Influenced by | |
Datalog | |
Influenced | |
CQL, LINQ, Windows PowerShell |
SQL (Structured Query Language) (Template:Pron-en ES-kyoo-EL )[1][2] is a database computer language designed for managing data in relational database management systems (RDBMS), and originally based upon Relational Algebra. Its scope includes data query and update, schema creation and modification, and data access control. SQL was one of the first languages for Edgar F. Codd's relational model in his influential 1970 paper, "A Relational Model of Data for Large Shared Data Banks"[3] and became the most widely used language for relational databases.[4][5]
History
SQL was developed at IBM by Daniel Richardson, Donald C. Messerly and Raymond F. Boyce in the early 1970s. This version, initially called SEQUEL, was designed to manipulate and retrieve data stored in IBM's original relational database product, System R. IBM patented this version of SQL in 1985.[6]
During the 1970s, a group at IBM San Jose Research Laboratory developed the System R relational database management system. Donald D. Chamberlin and Raymond F. Boyce of IBM subsequently created the Structured English Query Language (SEQUEL or SEQL) to manage data stored in System R.[7] The acronym SEQUEL was later changed to SQL because "SEQUEL" was a trademark of the UK-based Hawker Siddeley aircraft company.[8]
The first Relational Database Management System (RDBMS) was RDMS, developed at MIT in the early 1970s and Ingres, developed in 1974 at U.C. Berkeley. Ingres implemented a query language known as QUEL, which was later supplanted in the marketplace by SQL.[8]
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 the summer of 1979, Relational Software, Inc. introduced the first commercially available implementation of SQL, Oracle V2 (Version2) for VAX computers. Oracle V2 beat IBM's release of the System/38 RDBMS to market by a few weeks.[citation needed]
After testing SQL at customer test sites to determine the usefulness and practicality of the system, IBM began developing commercial products based on their System R prototype including System/38, SQL/DS, and DB2, which were commercially available in 1979, 1981, and 1983, respectively.[9]
Common criticisms of SQL include a perceived lack of cross-platform portability between vendors, inappropriate handling of missing data (see Null (SQL)), and unnecessarily complex and occasionally ambiguous language grammar and semantics. It also lacks the rigour of more formal languages such as Relational Algebra.
Language elements
The SQL language is sub-divided into several language elements, including:
- Clauses, which are in some cases optional, constituent components of statements and queries.[10]
- 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) Boolean truth values and which are used to limit the effects of statements and queries, or to change program flow.
- Queries which retrieve data based on specific criteria.
- Statements which may have a persistent effect on schemas and data, or which may control transactions, program flow, connections, sessions, or diagnostics.
- SQL statements also include the semicolon (";") statement terminator. Though not required on every platform, it is defined as a standard part of the SQL grammar.
- Insignificant whitespace is generally ignored in SQL statements and queries, making it easier to format SQL code for readability.
Queries
The most common operation in SQL is the query, which is performed with the declarative SELECT
statement. SELECT
retrieves data from one or more tables, or expressions. Standard SELECT statements have no persistent effects on the database. Some non-standard implementations of SELECT
can have persistent effects, such as the SELECT INTO
syntax that exists in some databases.[11]
Queries allow the user to describe desired data, leaving the database management system (DBMS) responsible for planning, optimizing, and performing the physical operations necessary to produce that result as it chooses.
A query includes a list of columns to be included in the final result immediately following the SELECT
keyword. An asterisk ("*
") can also be used to specify that the query should return all columns of the queried tables. SELECT
is the most complex statement in SQL, with optional keywords and clauses that include:
- The
FROM
clause which indicates the table(s) from which data is to be retrieved. TheFROM
clause can include optionalJOIN
subclauses to specify the rules for joining tables. - The
WHERE
clause includes a comparison predicate, which restricts the rows returned by the query. TheWHERE
clause eliminates all rows from the result set for which the comparison predicate does not evaluate to True. - The
GROUP BY
clause is used to project rows having common values into a smaller set of rows.GROUP BY
is often used in conjunction with SQL aggregation functions or to eliminate duplicate rows from a result set. TheWHERE
clause is applied before theGROUP BY
clause. - The
HAVING
clause includes a predicate used to filter rows resulting from theGROUP BY
clause. Because it acts on the results of theGROUP BY
clause, aggregation functions can be used in theHAVING
clause predicate. - The
ORDER BY
clause identifies which columns are used to sort the resulting data, and in which direction they should be sorted (options are ascending or descending). Without anORDER BY
clause, the order of rows returned by an SQL query is undefined.
The following is an example of a SELECT
query that returns a list of expensive books. The query retrieves all rows from the Book table in which the price column contains a value greater than 100.00. The result is sorted in ascending order by title. The asterisk (*) in the select list indicates that all columns of the Book table should be included in the result set.
SELECT *
FROM Book
WHERE price > 100.00
ORDER BY title;
The example below demonstrates a query of multiple tables, grouping, and aggregation, by returning a list of books and the number of authors associated with each book.
SELECT Book.title,
count(*) AS Authors
FROM Book
JOIN Book_author ON Book.isbn = Book_author.isbn
GROUP BY Book.title;
Example output might resemble the following:
Title Authors ---------------------- ------- SQL Examples and Guide 4 The Joy of SQL 1 An Introduction to SQL 2 Pitfalls of SQL 1
Under the precondition that isbn is the only common column name of the two tables and that a column named title only exists in the Books table, the above query could be rewritten in the following form:
SELECT title,
count(*) AS Authors
FROM Book
NATURAL JOIN Book_author
GROUP BY title;
However, many vendors either do not support this approach, or require column naming conventions.
SQL includes operators and functions for calculating values on stored values. SQL allows the use of expressions in the select list to project data, as in the following example which returns a list of books that cost more than 100.00 with an additional sales_tax column containing a sales tax figure calculated at 6% of the price.
SELECT isbn,
title,
price,
price * 0.06 AS sales_tax
FROM Book
WHERE price > 100.00
ORDER BY title;
Null and Three-Valued Logic (3VL)
The idea of Null was introduced into SQL to handle missing information in the relational model. The introduction of Null (or Unknown) along with True and False is the foundation of Three-Valued Logic. Null does not have a value (and is not a member of any data domain) but is rather a placeholder or “mark” for missing information. Therefore comparisons with Null can never result in either True or False but always in the third logical result, Unknown.[12]
SQL uses Null to handle missing information. It supports three-valued logic (3VL) and the rules governing SQL three-valued logic (3VL) are shown below (p and q represent logical states).[13] The word NULL is also a reserved keyword in SQL, used to identify the Null special marker.
Additionally, since SQL operators return Unknown when comparing anything with Null, SQL provides two Null-specific comparison predicates: The IS NULL
and IS NOT NULL
test whether data is or is not Null.[14]
Note that SQL returns only results for which the WHERE clause returns a value of True. I.e., it excludes results with values of False, but also those whose value is Unknown.
|
|
|
|
Universal quantification is not explicitly supported by SQL, and must be worked out as a negated existential quantification.[15][16][17]
There is also the "<row value expression> IS DISTINCT FROM <row value expression>" infixed comparison operator which returns TRUE if both operands are equal or both are NULL. Likewise, IS NOT DISTINCT FROM is defined as "NOT (<row value expression> IS DISTINCT FROM <row value expression>")
Data manipulation
The Data Manipulation Language (DML) is the subset of SQL used to add, update and delete data:
INSERT INTO My_table
(field1, field2, field3)
VALUES
('test', 'N', NULL);
UPDATE
modifies a set of existing table rows, e.g.,:
UPDATE My_table
SET field1 = 'updated value'
WHERE field2 = 'N';
DELETE
removes existing rows from a table, e.g.,:
DELETE FROM My_table
WHERE field2 = 'N';
TRUNCATE
deletes all data from a table in a very fast way. It usually implies a subsequent COMMIT operation.MERGE
is used to combine the data of multiple tables. It combines theINSERT
andUPDATE
elements. It is defined in the SQL:2003 standard; prior to that, some databases provided similar functionality via different syntax, sometimes called "upsert".
Transaction controls
Transactions, if available, wrap DML operations:
START TRANSACTION
(orBEGIN WORK
, orBEGIN TRANSACTION
, depending on SQL dialect) mark the start of a database transaction, which either completes entirely or not at all.COMMIT
causes all data changes in a transaction to be made permanent.ROLLBACK
causes all data changes since the lastCOMMIT
orROLLBACK
to be discarded, leaving the state of the data as it was prior to those changes.
Once the COMMIT
statement completes, the transaction's changes cannot be rolled back.
COMMIT
and ROLLBACK
terminate the current transaction and release data locks. In the absence of a START TRANSACTION
or similar statement, the semantics of SQL are implementation-dependent.
Example: A classic bank transfer of funds transaction.
START TRANSACTION;
UPDATE Account SET amount=amount-200 WHERE account_number=1234;
UPDATE Account SET amount=amount+200 WHERE account_number=2345;
IF ERRORS=0 COMMIT;
IF ERRORS<>0 ROLLBACK;
Data definition
The Data Definition Language (DDL) manages table and index structure. The most basic items of DDL are the CREATE
, ALTER
, RENAME
, DROP
and TRUNCATE
statements:
CREATE
creates an object (a table, for example) in the database.DROP
deletes an object in the database, usually irretrievably.ALTER
modifies the structure of an existing object in various ways—for example, adding a column to an existing table.
Example:
CREATE TABLE My_table
(
my_field1 INT,
my_field2 VARCHAR(50),
my_field3 DATE NOT NULL,
PRIMARY KEY (my_field1, my_field2)
);
Data types
Each column in an SQL table declares the type(s) that column may contain. ANSI SQL includes the following datatypes.[18]
Character strings
CHARACTER(n)
orCHAR(n)
— fixed-width n-character string, padded with spaces as neededCHARACTER VARYING(n)
orVARCHAR(n)
— variable-width string with a maximum size of n charactersNATIONAL CHARACTER(n)
orNCHAR(n)
— fixed width string supporting an international character setNATIONAL CHARACTER VARYING(n)
orNVARCHAR
(n) — variable-widthNCHAR
string
Bit strings
BIT(n)
— an array of n bitsBIT VARYING(n)
— an array of up to n bits
Numbers
INTEGER
andSMALLINT
FLOAT
,REAL
andDOUBLE PRECISION
NUMERIC(precision, scale)
orDECIMAL(precision, scale)
SQL provides a function to round numerics or dates, called TRUNC
and (in DB2, PostgreSQL, Oracle and MySQL) or ROUND
(in Sybase, Oracle and Microsoft SQL Server)[19]
Date and Time
DATE
TIME
TIMESTAMP
INTERVAL
Data control
The Data Control Language (DCL) authorizes users and groups of users to access and manipulate data. Its two main statements are:
GRANT
authorizes one or more users to perform an operation or a set of operations on an object.REVOKE
eliminates a grant, which may be the default grant.
Example:
GRANT SELECT, UPDATE
ON My_table
TO some_user, another_user;
REVOKE SELECT, UPDATE
ON My_table
FROM some_user, another_user;
Procedural extensions
SQL is designed for a specific purpose: to query data contained in a relational database. SQL is a set-based, declarative query language, not an imperative language such as C or BASIC. However, there are extensions to Standard SQL which add procedural programming language functionality, such as control-of-flow constructs. These are:
Source | Common Name |
Full Name |
---|---|---|
ANSI/ISO Standard | SQL/PSM | SQL/Persistent Stored Modules |
Interbase/ Firebird |
PSQL | Procedural SQL |
IBM | SQL PL | SQL Procedural Language (implements SQL/PSM) |
Microsoft/ Sybase |
T-SQL | Transact-SQL |
MySQL | SQL/PSM | SQL/Persistent Stored Module (implements SQL/PSM) |
Oracle | PL/SQL | Procedural Language/SQL (based on Ada) |
PostgreSQL | PL/pgSQL | Procedural Language/PostgreSQL Structured Query Language (based on Oracle PL/SQL) |
PostgreSQL | PL/PSM | Procedural Language/Persistent Stored Modules (implements SQL/PSM) |
In addition to the standard SQL/PSM extensions and proprietary SQL extensions, procedural and object-oriented programmability is available on many SQL platforms via DBMS integration with other languages. The SQL standard defines SQL/JRT extensions (SQL Routines and Types for the Java Programming Language) to support Java code in SQL databases. SQL Server 2005 uses the SQLCLR (SQL Server Common Language Runtime) to host managed .NET assemblies in the database, while prior versions of SQL Server were restricted to using unmanaged extended stored procedures which were primarily written in C. Other database platforms, like MySQL and Postgres, allow functions to be written in a wide variety of languages including Perl, Python, Tcl, and C.
Criticisms of SQL
SQL is a declarative computer language for use with relational databases. Interestingly, many of the original SQL features were inspired by, but violated, the semantics of the relational model and its tuple calculus realization. Recent extensions to SQL achieved relational completeness, but have worsened the violations, as documented in The Third Manifesto.
Practical criticisms of SQL include:
- Implementations are inconsistent and, usually, incompatible between vendors. In particular date and time syntax, string concatenation, nulls, and comparison case sensitivity vary from vendor to vendor.
- The language makes it too easy to do a Cartesian join (joining all possible combinations), which results in "run-away" result sets when
WHERE
clauses are mistyped. Cartesian joins are so rarely used in practice that requiring an explicitCARTESIAN
keyword may be warranted. (SQL 1992 introduced theCROSS JOIN
keyword that allows the user to make clear that a Cartesian join is intended, but the shorthand "comma-join" with no predicate is still acceptable syntax, which still invites the same mistake.) - It is also possible to misconstruct a
WHERE
on an update or delete, thereby affecting more rows in a table than desired. (A work-around is to use transactions or habitually type in the WHERE clause first, then fill in the rest later.) - The grammar of SQL is perhaps unnecessarily complex, borrowing a COBOL-like keyword approach, when a function-influenced syntax could result in more re-use of fewer grammar and syntax rules.
Cross-vendor portability
Popular implementations of SQL commonly omit support for basic features of Standard SQL, such as the DATE
or TIME
data types. As a result, SQL code can rarely be ported between database systems without modifications.
There are several reasons for this lack of portability between database systems:
- The complexity and size of the SQL standard means that most implementors do not support the entire standard.
- The standard does not specify database behavior in several important areas (e.g., indexes, file storage...), leaving implementations to decide how to behave.
- The SQL standard precisely specifies the syntax that a conforming database system must implement. However, the standard's specification of the semantics of language constructs is less well-defined, leading to ambiguity.
- Many database vendors have large existing customer bases; where the SQL standard conflicts with the prior behavior of the vendor's database, the vendor may be unwilling to break backward compatibility.
- Software vendors often desire to create incompatibilities with other products, as it provides a strong incentive for their existing users to remain loyal (see vendor lock-in).
Standardization
SQL was adopted as a standard by the American National Standards Institute (ANSI) in 1986 as SQL-86[20] and International Organization for Standardization (ISO) in 1987. The original SQL standard declared that the official pronunciation for SQL is "es queue el".[1] Many English-speaking database professionals still use the nonstandard[21] pronunciation /ˈsiːkwəl/ (like the word "sequel"). SEQUEL was an earlier IBM database language, a predecessor to the SQL language.[22]
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.[23]
The SQL standard has gone through a number of revisions, as shown below:
Year | Name | Alias | Comments |
---|---|---|---|
1986 | SQL-86 | SQL-87 | First formalized by ANSI. |
1989 | SQL-89 | FIPS 127-1 | Minor revision, adopted as FIPS 127-1. |
1992 | SQL-92 | SQL2, FIPS 127-2 | Major revision (ISO 9075), Entry Level SQL-92 adopted as FIPS 127-2. |
1999 | SQL:1999 | SQL3 | Added regular expression matching, recursive queries, triggers, support for procedural and control-of-flow statements, non-scalar types, and some object-oriented features. |
2003 | SQL:2003 | Introduced XML-related features, window functions, standardized sequences, and columns with auto-generated values (including identity-columns). | |
2006 | SQL:2006 | ISO/IEC 9075-14:2006 defines ways in which SQL can be used in conjunction with XML. It defines ways of importing and storing XML data in an SQL database, manipulating it within the database and publishing both XML and conventional SQL-data in XML form. In addition, it enables applications to integrate into their SQL code the use of XQuery, the XML Query Language published by the World Wide Web Consortium (W3C), to concurrently access ordinary SQL-data and XML documents. | |
2008 | SQL:2008 | Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers. Adds the TRUNCATE statement.[24] |
Interested parties may purchase SQL standards documents from ISO or ANSI. A draft of SQL:2008 is freely available as a zip archive.[25]
Standard structure
The SQL standard is divided into several parts, including:
SQL Framework, provides logical concept
SQL/Foundation, defined in ISO/IEC 9075, Part 2. This part of the standard contains the most central elements of the language. It consists of both mandatory and optional features.
The SQL/Bindings, specifies how SQL is to be bound to variable host languages,excluding Java.
The SQL/CLI, or Call-Level Interface, part is defined in ISO/IEC 9075, Part 3. SQL/CLI defines common interfacing components (structures and procedures) that can be used to execute SQL statements from applications written in other programming languages. SQL/CLI is defined in such a way that SQL statements and SQL/CLI procedure calls are treated as separate from the calling application's source code. Open Database Connectivity is a well-known superset of SQL/CLI. This part of the standard consists solely of mandatory features.
The SQL/PSM, or Persistent Stored Modules, part is defined by ISO/IEC 9075, Part 4. SQL/PSM standardizes procedural extensions for SQL, including flow of control, condition handling, statement condition signals and resignals, cursors and local variables, and assignment of expressions to variables and parameters. In addition, SQL/PSM formalizes declaration and maintenance of persistent database language routines (e.g., "stored procedures"). This part of the standard consists solely of optional features.
The SQL/MED, or Management of External Data, part is defined by ISO/IEC 9075, Part 9. SQL/MED provides extensions to SQL that define foreign-data wrappers and datalink types to allow SQL to manage external data. External data is data that is accessible to, but not managed by, an SQL-based DBMS. This part of the standard consists solely of optional features.
The SQL/OLB, or Object Language Bindings, part is defined by ISO/IEC 9075, Part 10. SQL/OLB defines the syntax and symantics of SQLJ, which is SQL embedded in Java. The standard also describes mechanisms to ensure binary portability of SQLJ applications, and specifies various Java packages and their contained classes. This part of the standard consists solely of optional features.
The SQL/MM (Multimedia), This extends SQL to deal intelligently with large,complex and sometimes streaming items of data, such as video,audio and spatial data.
The SQL/Schemata, or Information and Definition Schemas, part is defined by ISO/IEC 9075, Part 11. SQL/Schemata defines the Information Schema and Definition Schema, providing a common set of tools to make SQL databases and objects self-describing. These tools include the SQL object identifier, structure and integrity constraints, security and authorization specifications, features and packages of ISO/IEC 9075, support of features provided by SQL-based DBMS implementations, SQL-based DBMS implementation information and sizing items, and the values supported by the DBMS implementations.[26] This part of the standard contains both mandatory and optional features.
The SQL/JRT, or SQL Routines and Types for the Java Programming Language, part is defined by ISO/IEC 9075, Part 13. SQL/JRT specifies the ability to invoke static Java methods as routines from within SQL applications. It also calls for the ability to use Java classes as SQL structured user-defined types. This part of the standard consists solely of optional features.
The SQL/XML, or XML-Related Specifications, part is defined by ISO/IEC 9075, Part 14. SQL/XML specifies SQL-based extensions for using XML in conjunction with SQL. The XML data type is introduced, as well as several routines, functions, and XML-to-SQL data type mappings to support manipulation and storage of XML in an SQL database. This part of the standard consists solely of optional features.
Alternatives to SQL
A distinction should be made between alternatives to relational query languages and alternatives to SQL. Below are proposed relational alternatives to SQL. See navigational database for alternatives to relational:
- .QL - object-oriented Datalog
- 4D Query Language (4D QL)
- Datalog
- Hibernate Query Language (HQL) - A Java-based tool that uses modified SQL
- IBM Business System 12 (IBM BS12)
- ISBL
- Java Persistence Query Language (JPQL) - The query language used by the Java Persistence API in Java EE5
- LINQ
- Object Query Language
- QBE (Query By Example) created by Moshè Zloof, IBM 1977
- Quel introduced in 1974 by the U.C. Berkeley Ingres project.
- Tutorial D
- XQuery
See also
- Comparison of object-relational database management systems
- Comparison of relational database management systems
- D (data language specification)
- D4 (programming language) (an implementation of D)
- Hierarchical model
- List of computer standards
- List of relational database management systems
- MUMPS
- Search suggest drop-down list
References
- ^ a b Chapple, Mike. "SQL Fundamentals". About.com: Databases. About.com. Retrieved 2009-01-28.
- ^ Beaulieu, Alan (April 2009). Mary E. Treseler (ed.). Learning SQL (2nd ed.). Sebastapol, CA, USA: O'Reilly. ISBN 978-0-596-52083-0.
- ^ Codd, E.F. (1970). "A Relational Model of Data for Large Shared Data Banks". Communications of the ACM. 13 (No. 6). Association for Computing Machinery: 377–387. doi:10.1145/362384.362685. Retrieved 2007-06-09.
{{cite journal}}
:|issue=
has extra text (help); Unknown parameter|month=
ignored (help) - ^ Chapple, Mike. "SQL Fundamentals". About.com: Databases. About.com. Retrieved 2007-06-10.
- ^ "Structured Query Language (SQL)". International Business Machines. October 27, 2006. Retrieved 2007-06-10.
- ^ Shaw; et al. (1985-03-19). "US Patent 4,506,326". Retrieved 2008-11-04.
{{cite web}}
: Explicit use of et al. in:|author=
(help) - ^ Chamberlin, Donald D. (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–264. Retrieved 2007-06-09.
{{cite journal}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - ^ a b Oppel, Andy (March 1, 2004). Databases Demystified. San Francisco, CA: McGraw-Hill Osborne Media. pp. 90–91. ISBN 0-07-225364-9.
- ^ "History of IBM, 1978". IBM Archives. IBM. Retrieved 2007-06-09.
- ^ ANSI/ISO/IEC International Standard (IS). Database Language SQL—Part 2: Foundation (SQL/Foundation). 1999.
- ^ "INTO Clause (Transact-SQL)". SQL Server 2005 Books Online. Microsoft. 2007. Retrieved 2007-06-17;.
{{cite web}}
: Check date values in:|accessdate=
(help)CS1 maint: extra punctuation (link) - ^ ISO/IEC (2003). ISO/IEC 9075-1:2003, "SQL/Framework". ISO/IEC. Section 4.4.2: The null value.
{{cite book}}
: Unknown parameter|nopp=
ignored (|no-pp=
suggested) (help) - ^ Coles, Michael (2005-06-27). "Four Rules for Nulls". SQL Server Central. Red Gate Software.
- ^ ISO/IEC. ISO/IEC 9075-2:2003, "SQL/Foundation". ISO/IEC.
{{cite book}}
: Cite has empty unknown parameter:|1=
(help); Unknown parameter|nopp=
ignored (|no-pp=
suggested) (help) - ^ M. Negri, G. Pelagatti, L. Sbattella (1989) Semantics and problems of universal quantification in SQL.
- ^ Fratarcangeli, Claudio (1991). Technique for universal quantification in SQL. Retrieved from ACM.org.
- ^ Kawash, Jalal (2004). Complex quantification in Structured Query Language (SQL): a tutorial using relational calculus - Journal of Computers in Mathematics and Science Teaching ISSN 0731-9258 Volume 23, Issue 2, 2004 AACE Norfolk, Virginia. Retrieved from Thefreelibrary.com
- ^ Information Technology - Database Language SQL (Proposed revised text of DIS 9075)
- ^ Arie Jones, Ryan K. Stephens, Ronald R. Plew, Alex Kriegel, Robert F. Garrett (2005), SQL Functions Programmer's Reference. Wiley, 127 pages
- ^ American National Standards Institute. X3H2 Records, 1978-1995. Finding Aid.
- ^ Melton, Jim (1993). Understanding the New SQL: A Complete Guide. Morgan Kaufmann. p. 536. ISBN 1558602453.
chapter 1.2 What is SQL? SQL (correctly pronounced "ess cue ell," instead of the somewhat common "sequel"), is a...
{{cite book}}
: Unknown parameter|coauthors=
ignored (|author=
suggested) (help) - ^ "Understand SQL". www.faqs.org/docs/.
- ^ Doll, Shelley (June 19, 2002). "Is SQL a Standard Anymore?". TechRepublic's Builder.com. TechRepublic. Retrieved 2007-06-09.
- ^ Sybase.com
- ^ Zip archive of the SQL:2008 draft from Whitemarsh Information Systems Corporation.
- ^ "ISO/IEC 9075-11:2008: Information and Definition Schemas (SQL/Schemata)". 2008: 1.
{{cite journal}}
: Cite journal requires|journal=
(help)
- "A Relational Model of Data for Large Shared Data Banks" E. F. Codd, Communications of the ACM, Vol. 13, No. 6, June 1970, pp. 377–387.
- Discussion on alleged SQL flaws (C2 wiki)
External links
- 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.
- Comparison of Different SQL Implementations This comparison of various SQL implementations is intended to serve as a guide to those interested in porting SQL code between various RDBMS products, and includes comparisons between SQL:2008, PostgreSQL, DB2, MS SQL Server, MySQL, Oracle, and Informix.