Quick Reference
A majority of the commands that you will need to be familiar with are captured here in the quick reference guide below.
Operator/Function | Description | Syntax |
---|---|---|
Filter/Search/Condition | Find relevant data by filtering or searching | |
Filters on a specific predicate |
| |
|
| |
Searches all columns in the table for the value |
| |
Returns the specified number of records. Use to test a query
Note: |
| |
Adds a condition statement, similar to if/then/elseif in other systems. |
| |
Produces a table with the distinct combination of the provided columns of the input table |
| |
Date/Time | Operations that use date and time functions | |
Returns the time offset relative to the time the query executes. For example, |
| |
Returns data in various date formats. |
| |
Rounds all values in a timeframe and groups them |
| |
Create/Remove Columns | Add or remove columns in a table | |
Outputs a single row with one or more scalar expressions |
| |
Selects the columns to include in the order specified |
| |
Selects the columns to exclude from the output |
| |
Selects the columns to keep in the output |
| |
Renames columns in the result output |
| |
Reorders columns in the result output |
| |
Creates a calculated column and adds it to the result set |
| |
Sort and Aggregate Dataset | Restructure the data by sorting or grouping them in meaningful ways | |
Sort the rows of the input table by one or more columns in ascending or descending order |
| |
Returns the first N rows of the dataset when the dataset is sorted using |
| |
Groups the rows according to the |
| |
Counts records in the input table (for example, T)
This operator is shorthand for |
| |
Merges the rows of two tables to form a new table by matching values of the specified column(s) from each table. Supports a full range of join types: |
| |
Takes two or more tables and returns all their rows |
| |
Generates a table with an arithmetic series of values |
| |
Format Data | Restructure the data to output in a useful way | |
Extends the columns of a fact table with values looked-up in a dimension table |
| |
Turns dynamic arrays into rows (multi-value expansion) |
| |
Evaluates a string expression and parses its value into one or more calculated columns. Use for structuring unstructured data. |
| |
Creates series of specified aggregated values along a specified axis |
| |
Binds a name to expressions that can refer to its bound value. Values can be lambda expressions to create query-defined functions as part of the query. Use |
| |
General | Miscellaneous operations and function | |
Runs the function on the table that it receives as input. |
| |
Evaluates query language extensions (plugins) |
| |
Visualization | Operations that display the data in a graphical format | |
Renders results as a graphical output |
|
Last updated