Skip to content
Andrey Gershun edited this page Jan 18, 2016 · 13 revisions

SELECT

Select clauses:

Return value modifiers

[Columns](Select Columns)

    SELECT City.Name, City.*, Population AS p FROM Cities

Select [_](Underscore Object) - underscore object - whole row

Operators

    SELECT w*h+20 FROM ?

Aggregators

   SELECT SUM(x), COUNT(*) FROM arr

Functions

    SELECT LCASE(name), LEN(name) FROM names

See also: SEARCH

Clone this wiki locally