Count
count
Returns a single row containing the number of rows in the input. This is the tabular operator form; see also the count() aggregate function.
Spec
... | count Parameters
None Return Value
A single-row table with one column named "count" (int64). Example
range val from 1 to 10 step 1
| count | count |
|---|
| 10 |