SELECT Statement#
The SELECT
statement is used to query tables in some catalog.
Examples#
Evaluate a single expression.
1 |
|
Select all columns and rows from table T
.
1 |
|
Select columns a
, b
, and c
from table T
.
1 |
|
Select columns, applying scalar functions foo and bar.
1 |
|
Count the number of rows whose column a
is non-null.
1 |
|
Count the number of rows in each group b
.
1 |
|
Work in Progress
The SQL Reference documents are a work in progress.