SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987 (#33629)

pull/30190/head^2
yuktaanand 2019-03-08 04:07:19 +05:30 committed by Randell Dawson
parent c241ca7c49
commit c49c3e5a23
1 changed files with 4 additions and 1 deletions

View File

@ -5,16 +5,19 @@ title: SQL
SQL stands for Structured Query Language. It is the most common tool used to create, delete, manipulate and manage data in a relational database (often referred to as a "SQL database").
SQL is commonly pronounced "sequel." Its most popular variants are MySQL, PostgreSQL, and SQLite - a version of SQL which is commonly used for prototyping. It introduced the concept of accessing many records with one single command, using SQL Queries.
SQL is commonly pronounced "sequel." Its most popular variants are Microsoft SQL, MySQL, PostgreSQL, and SQLite - a version of SQL which is commonly used for prototyping. It introduced the concept of accessing many records with one single command, using SQL Queries.
However, SQL code can differ between the different variants. For example, Microsoft SQL is programmed with T-SQL, which sometimes has a different syntax.
SQL is commonly pronounced "sequel." Its most popular variants are MySQL, PostgreSQL, and SQLite (version commonly used for prototyping). It introduced the concept of accessing many records with one single command, using SQL Queries.
SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987.
### Syntax
# The SQL language is subdivided into several language elements, including:
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.)