SELECT

SELECT is generally used to query data in one or more tables.

Common Syntax

SELECT
[ALL | DISTINCT | DISTINCTROW ]
select_expr
[, select_expr ...]
[FROM table_references [WHERE where_condition]
[GROUP BY {col_name | expr | position} [ASC | DESC], ...]
[HAVING where_condition] [ORDER BY {col_name | expr | position} [ASC | DESC], ...]
[LIMIT {[offset,] row_count | row_count OFFSET offset}]
Table 1 Supported syntax

Syntax

Description

select_expr

Indicates a column that you want to query.

FROM table_references

Indicates the tables that you want to query.

WHERE

Followed by an expression to filter for rows that meet certain criteria.

GROUP BY

Groups the clauses used in SQL in sequence. GROUP BY indicates relationships between statements and supports column names. For example, the HAVING clause must be after the GROUP BY clause and before the ORDER BY clause.

ORDER BY

Indicates relationships between statements. Sorting by column name or by a specified order such as ASC and DESC is supported.

LIMIT/OFFSET

Restrains the offset and size of output result sets, for example, one or two values can be input after LIMIT.

Syntax Description