Skip to main content

Data Table SQL Filter

Overview


Filters a data table using a query based on SQL syntax.

Input

NameRequiredDescription
TableVariable holding the table.
DistinctIf true, the rows selected will be distinct. Duplicate rows will be filtered out.
FilterFilter rows according to the syntax from SQL's WHERE clause e.g. Col1 = 'foo' AND Col2 = 'bar'.
SortColumn and sort direction according to the syntax from SQL's ORDER BY clause e.g. Col ASC, Col DESC, etc.

Output

Data Table The filtered data table.