NQL summarize
The summarize
statement condenses the information into a single result.
Syntax
Examples
Compute the average value of the number of page views per device.
average_num_navigation_per_device |
---|
115.9 |
Count the number of devices active in the last 7 days. In case of the count()
aggregation function, you can omit the filed name before the aggregation to count the number of records of the root table.
number_of_devices |
---|
285 |
Compute the total size of all the binaries.
total_size |
---|
611.3 GB |
Last updated