Encyclopedia

Structured Query Language

Also found in: Dictionary, Acronyms.

Structured Query Language

[‚strək·chərd ′kwir·ē ‚laŋ·gwij]
(computer science)
The standard language for accessing relational databases. Abbreviated SQL.
McGraw-Hill Dictionary of Scientific & Technical Terms, 6E, Copyright © 2003 by The McGraw-Hill Companies, Inc.

Structured Query Language

This article is provided by FOLDOC - Free Online Dictionary of Computing (foldoc.org)

SQL

(Structured Query Language) Typically pronounced "see-quill" rather than the acronym, SQL is a language used to interrogate and process data in a relational database. Originally developed by IBM for its mainframes, SQL commands can be used to interactively work with a database or can be embedded within a script or programming language to interface to a database. Programming extensions to SQL have turned it into a full-blown database programming language, and all major database management systems (DBMSs) support it.

ANSI standardized SQL, but most DBMSs have some proprietary enhancement, which if used, makes SQL non-standard. Moving an application from one SQL database to another sometimes requires tweaking, the age old problem in this business! See MySQL, SQLite, MDX, CLI, ODBC, IDAPI and SQL injection.

The following SQL query selects customers with credit limits of at least $5,000 and puts them into sequence from highest credit limit to lowest. The blue words are SQL verbs. See SPUFI.

select name, city, state, zipcode
     from customer
     where creditlimit > 4999
     order by creditlimit desc



From Natural Language to SQL
English Wizard generated the SQL code at the bottom from the English sentence at the top. A lot of SQL code is required to ask a simple question. (Screenshot courtesy of EasyAsk Inc.)
Copyright © 1981-2025 by The Computer Language Company Inc. All Rights reserved. THIS DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher.
Mentioned in
References in periodicals archive
Topics like structured query language (SQL), ERP systems, event-based systems architecture/REA, and certain recent communication technologies such as Inter-, intra-, and extra-nets, and electronic commerce are likely to increase in importance, given their recent importance to business.
Two are related to Structured Query Language (SQL), which is used to tell a database to search for information.
In addition, tests were developed for other languages such as Beginner's All-Purpose Symbolic Instruction Code (BASIC) (8), Ada, and Structured Query Language (SQL) (9).
use the structured query language (SQL), the same as most of the
New software development kits extend the platform to online analytical processing (OLAP) and structured query language (SQL).
Web-enabled middleware focuses on the translation of requests from hypertext markup language (HTML) or Java to Java to database-access languages such as structured query language (SQL) through the use of a common gateway interface (CGI) script..
The success of Structured Query Language (SQL) has capitalized on a small number of primitives sufficient to support a vast majority of such applications.
The database will be accessible via structured query language (SQL) and will allow an almost unlimited variety of reports to be generated, including capacity, gas quality (including BTU content), weather effects, cost, scheduling, and load forecasting.
MediaSphere uses the so-called object-oriented approach in accepting and indexing digital data into a Sybase SQL (structured query language) relational database.
User interface is built on standard SQL (Structured Query Language), allowing user-formatted displays and configurations.
Copyright © 2003-2025 Farlex, Inc Disclaimer
All content on this website, including dictionary, thesaurus, literature, geography, and other reference data is for informational purposes only. This information should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional.