kids encyclopedia robot

Structured Query Language facts for kids

Kids Encyclopedia Facts

Structured Query Language (SQL) is a language used to view or change data in databases. The statements used in this language are called SQL queries.

Basic use of SQL queries is, to:

  • INSERT data INTO a database,
  • DELETE data FROM a database,
  • UPDATE data in a database,
  • SELECT (extract) data FROM a database.

Examples

This is a simple SQL Query which is used to show all values stored in column named 'my_column' from the data table named 'my_table'.

SELECT my_column FROM my_table;

Here is an example of inserting new information into a table called 'people.' The query first specifies the table as 'people', then the columns in which data is going to be inserted into, and the data that is going into these columns. As a result, data will be added into the columns in the same order the column names are listed in the first brackets: (first_name, last_name, age, favorite_food).

INSERT INTO people (first_name, last_name, age, favorite_food) VALUES ("Bob", "Page", "42", "Hamburgers");

In the example below the columns aren't listed. This would result in an attempt to add the data into the table in the order the values are listed.

INSERT INTO people VALUES ("Bob", "Page", "42", "Hamburgers");

Doing the above (without naming the columns) might result in inputting the data in an incorrect column or the statement might not run correctly - when the value types are mismatched (for example trying to input a word into a column storing only numbers).

See also

Kids robot.svg In Spanish: SQL para niños

kids search engine
Structured Query Language Facts for Kids. Kiddle Encyclopedia.