Querying a table v15
To retrieve data from a table, you execute a query using an SQL SELECT
statement. The statement is divided into:
- A select list (the part that lists the columns to return)
- A table list (the part that lists the tables from which to retrieve the data)
- An optional qualification (the part that specifies any restrictions)
The following query lists all columns of all employees in the table in no particular order.