SELECT
Retrieve rows from the database and allow you to select one or more rows or columns from one or more tables. Although the complete syntax of the SELECT statement is more complicated, its main clause can be summarized as follows:
SELECT SELECT_LIST [INTO new_TABLE] from table_source [Where search_condition] [GROUP BY Group_BY_EXPIPRESSION] [HAVING Search_Condition] [ORDER BY ORDER_EXPISSION [ASC | DESC]]
A UNION operator can be used between queries to combine the results of the query into a single result set.
grammar
Select Statement :: =