
SQL-92 was developed by the INCITS Technical Committee H2 on Database. This committee develops standards for the syntax and semantics of database languages.
SQL-92 was designed to be a standard for relational database management systems (RDBMSs). It is based SQL-89, which in turn was based on SQL-86. SQL-92 was developed by the ANSI (then NCITS, and now INCITS) X3H2 committee, which originally began work on a SQL standard in 1982.
SQL-92 does not address objects in any way. Nevertheless, SQL-92 forms the basis for JDBC, SQLJ, SQL:1999, and ODMG OQL. Each of these specifications are covered in other parts of this section. See the related content below.
SQL is a database sublanguage that is used for accessing relational databases. The letters don't stand for anything.1 A database sublanguage is one that is used in association with some other language for the purpose of accessing a database. This results in a programming style illustrated by the embedded SQL statements in the following diagram.

An example of an embedded SQL statement that creates a new Person instance would be:
EXEC SQL BEGIN DECLARE SECTION;
char SQLSTATE[6];
char ssan[9];
char name[30];
EXEC SQL END DECLARE SECTIONEXEC SQL
INSERT INTO person VALUES (:ssan, :name);
This code would be in addition to any host programming code. The variables :ssan and :name would need to be set by the host program using the host programming language before execution. If you also wanted to manipulate this new Person instance in the host program, you would need programming code in addition to this code fragment that populates the instance in the programming language along with the instance in the database.
1. According to Jim Melton, the editor of the SQL standard, the proper pronunciation is "ess cue ell," and not "sequel" as is commonly heard. Jim also says that SQL stands for "SQL Query Language" and notes that this is a recursive acronym. In some early prototypes, SQL stood for "Structured Query Language." That is not true for the standard.
Related Articles
More on the general topic: DBMS Standards
- JDBC
- SQLJ
- SQL:1999
- ADO.NET
- Java Data Objects (JDO)
- ODMG 3.0
- Detailed Comparison of ODMG 3.0 and JDO
- Summary Comparison of DBMS Standards
Copyright © 2000 -
2013,
Barry & Associates, Inc. All Rights Reserved.
You may use this material for your work or classes. Reprint Policy.

