SelectExpression

SELECT expression abstraction

A select expression is a unit to be selected by a query (like a column, or the aggregate (count, min, max, …) of a column).

Not to confuse with “SELECT query”. See Select for abstraction of the latter.

Members

Variables

aggregateFunction
AggregateFunction aggregateFunction;

Aggregate function to apply

column
Column column;

Column to select

distinct
Distinct distinct;

Whether selection should be DISTINCT (or not)

Meta