Skip to main content

Table Functions

Table functions transform an input table expression into an output table result.

FunctionSyntaxPurpose
selectselect(table, field1, field2, [,...])Selects the fields to be returned in the query result.
groupgroup(table, field1, field2, [,...])Groups the result set by the specified field(s).
filterfilter(table, condition1, condition2, [,...])Filters the result set to include only rows that satisfy the specified conditions
uniqueunique(table, field1, field2, [,...])Returns the unique values of the specified field(s).

Let us know what you think about this document :)