What is SQL?

This is some text inside of a div block.

What is SQL?

SQL (pronounced "ess-que-el") stands for Structured Query Language. SQL is used to communicate with a database. According to ANSI (American National Standards Institute), it is the standard language for relational database management systems.

SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database. Some common relational database management systems that use SQL are: Oracle, Sybase, Microsoft SQL Server, Access, Ingres, etc. Although most database systems use SQL, most of them also have their own additional proprietary extensions that are usually only used on their system.

SQL was developed by IBM in the 1970s for use in System R, and is a de facto standard, as well as an ISO and ANSI standard. SQL offers two main advantages over older read/write APIs: first, it introduced the concept of accessing many records with one single command; and second, it eliminates the need to specify how to reach a record using low-level address pointers.

Structured Query Language Meaning

Because SQL is the agreed upon language for queries in a relational database management system, it is essential for everyone working in data to have a thorough understanding of it. Queries are the ability to ask the data questions, and the method of searching and discovering data. Being able to interact with data using SQL is essential to the role of being a data steward.

SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database. Some common relational database management systems that use SQL are: Oracle, Sybase, Microsoft SQL Server, Access, Ingres, etc.

Although most database systems use SQL, most of them also have their own additional proprietary extensions that are usually only used on their system.

However, the standard SQL commands such as "Select", "Insert", "Update", "Delete", "Create", and "Drop" can be used to accomplish almost everything that one needs to do with a database. This tutorial will provide you with the instruction on the basics of each of these commands as well as allow you to put them to practice using the SQL Interpreter.

Uses & Applications

SQL in a database can be used for:

  • Creating a new database and inserting data into it
  • Deleting data within the database
  • Changing or moving data from one table or dataset to another
  • Changing and setting permissions for the data (i.e. who can view what, who can change what within a database).

How it Works

Using SQL begins with a command, which is carried through a SQL engine and then interpreted. As per tutorialspoint.com, the components in this process are as follows:

  • Query dispatcher
  • Optimization engines
  • Classic query engine
  • SQL query engine

From the blog

See all