SQL Select data from a database - SQL Tutorial
The data returned is stored in a result table, called the result-set.
Basic syntax of the SELECT statement, example:
SELECT column1, column2, columnB
FROM table_name
WHERE [CONDITION|EXPRESSION];
FROM table_name
WHERE [CONDITION|EXPRESSION];