What is SQL (Structured Query Language) ? - Definition

Structured Query Language (SQL)

What is SQL (Structured Query Language) ? - Definition

What is SQL (Structured Query Language) ? - Definition


Definition - What does Structured Query Language (SQL) mean?


Structured Query Language (SQL) is a standard PC languages for relational database administration and data manipulation. SQL is utilized to query, insert, update and adjust data. Most relational databases support SQL, which is an additional benefit for database administrators (DBAs), as they are regularly required to help databases over a several different platforms.



First created in the early 1970s at IBM by Raymond Boyce and Donald Chamberlin, SQL was economically released by Relational Software Inc. (presently known as Oracle Corporation) in 1979. The present standard SQL version is voluntary, seller consistent and observed by the American National Standards Institute (ANSI). Most major vendors also have exclusive versions that are incorporated and built on ANSI SQL, e.g., SQL*Plus (Oracle), and Transact-SQL (T-SQL) (Microsoft).

Also Read :



explains Structured Query Language (SQL)


A standout amongst the most fundamental DBA rites of passage is learning SQL, which starts with composing the first SELECT statement or SQL script without a graphical user interfaces (GUI). Progressively, relational databases use GUIs for easier database management, and queries would now be able to be simplified with graphical tools, e.g.,  drag-and-drop wizards. However, learning SQL is basic because such tools are never as powerful as SQL.

SQL code is divided into four main classifications :

  • ➤ Queries are performed using the omnipresent yet natural SELECT statement, which is additionally divided into clauses, including SELECT, FROM, WHERE and ORDER BY.
  • Data Manipulation Language (DML) is used to include, update or erase data and is really a SELECT statement subset and is comprised the INSERT, DELETE and UPDATE statements, and additionally control explanations, eg. BEGIN TRANSACTION, SAVEPOINT, COMMIT and ROLLBACK.
  • Data Definition Language (DDL) is utilized for managing tables and index structures. eg of DDL statements include CREATE, ALTER, TRUNCATE and DROP.
  • Data Control Language (DCL) is utilized to assign and revoke database rights and authorizations. Its fundamental explanations are GRANT and REVOKE.
Previous
Next Post »