December 2014
Intermediate to advanced
858 pages
40h 10m
English
|
General form, SELECT
statement:
SELECT column-1<,
... column-n>
FROM table-1
| view-1<, ... table-n
| view-n>
<WHERE expression>
<GROUP
BY column-1<,
... column-n>>
<HAVING expression>
<ORDER
BY column-1<,
... column-n>>;
SELECT
specifies the column(s)
that appear in the output
FROM
specifies the table(s)
or view(s) to be queried
WHERE
uses an expression
to subset or restrict the data based on one or more condition(s)
GROUP BY
classifies the data
into groups based on the specified column(s)
HAVING
uses an expression to subset or ... |
Read now
Unlock full access