Skip to content

Select Columns

agershun edited this page Dec 28, 2014 · 4 revisions

SELECT columns

Columns

    SELECT size
    SELECT City.Name, City.Population

Expressions

    SELECT LCASE(City), 2+2

Aggregators

    SELECT COUNT(*), SUM(Population)

Alias

    SELECT City+” “+Country AS LongName
Clone this wiki locally