For the SELECT clause, specify all properties, or specify property or expression lists. The SELECT statement output event consists of the items specified here.
Syntax:
select [distinct] (* | (property | expression) [as name])
[, (property | expression) [as name]] [, ...]
If an asterisk (*) is specified, this is interpreted as all properties being specified.
For AS, a name (alias) can be attached to a property or expression.
Output of duplicate output events can be suppressed by specifying DISTINCT.