SELECT statement syntax:
SELECT
    [ALL | DISTINCT]
    select_expr, ...
    [FROM components
    [WHERE where_condition]
    [GROUP BY groupby_expr
      [ASC | DESC], ... ]
    [HAVING where_condition]
    [ORDER BY orderby_expr
      [ASC | DESC], ...]
    [LIMIT row_count OFFSET offset}]

The SELECT statement is used for the retrieval of data from one or more components.