DRAFTThis page is not published. Only visible in development mode.
RQL pipeline operator

from

Starts a pipeline by naming its data source: a table, a view, or inline records.

Syntax

$ RQL

Every query begins with from. The source can be a table, a view, a system vtable such as system::metrics, or an inline array of records.

Examples

from

$ from
$ ctrl+enter to run

Query Inline Data

$ Query Inline Data
$ ctrl+enter to run

Inline records need no schema; useful for prototyping an expression.

Related