SQL Overview: Difference between revisions

From VistApedia
Jump to navigationJump to search
GregW (talk | contribs)
No edit summary
removed pejorative comment and added a little content
Line 1: Line 1:
{{stub}}
{{stub}}
SQL stands for Structured Query Language. This is a semi-mathematical method of asking
SQL stands for Structured Query Language. It is an ANSI/ISO standard language for querying and otherwise working with [[relational database]]s. Although there is a standard for SQL, database vendors typically implement slightly different variants of the language (e.g., in terms of the data tpes supported). In addition, vendors often add procedural extensions to the language (e.g., PL/SQL for Oracle or Transact-SQL for SQL server).
questions about information in a database, especially when the database has a relational view.
 
Essentially, SQL is a language implementing the [[relational algebra]], adding features such as data types, tranasctions, support for indexes, and other features needed by a concrete database management system

Revision as of 14:30, 4 July 2007

This article is a stub. You can help OpenVistA Wiki by fixing it.

SQL stands for Structured Query Language. It is an ANSI/ISO standard language for querying and otherwise working with relational databases. Although there is a standard for SQL, database vendors typically implement slightly different variants of the language (e.g., in terms of the data tpes supported). In addition, vendors often add procedural extensions to the language (e.g., PL/SQL for Oracle or Transact-SQL for SQL server).

Essentially, SQL is a language implementing the relational algebra, adding features such as data types, tranasctions, support for indexes, and other features needed by a concrete database management system