Batches
A query can include multiple tabular expression statements, as long as they’re delimited by a semicolon (;
) character. The query then returns multiple tabular results. Results are produced by the tabular expression statements and ordered according to the order of the statements in the query text.
Examples
The following examples show how to create multiple tables simultaneously.
Name tabular results
The following query produces two tabular results. User agent tools can then display those results with the appropriate name associated with each (Count of events in Florida
and Count of events in Guam
, respectively).
StormEvents | where State == "FLORIDA" | count | as ['Count of events in Florida'];
StormEvents | where State == "GUAM" | count | as ['Count of events in Guam']
Output
Count of events in Florida
Count |
---|
1042 |
Count of events in Guam
Count |
---|
4 |
Share a calculation
Batching is useful for scenarios where a common calculation is shared by multiple subqueries, such as for dashboards. If the common calculation is complex, use the materialize() function and construct the query so that it will be executed only once.
let m = materialize(StormEvents | summarize n=count() by State);
m | where n > 2000;
m | where n < 10
Output
Table 1
State | n |
---|---|
ILLINOIS | 2022 |
IOWA | 2337 |
KANSAS | 3166 |
MISSOURI | 2016 |
TEXAS | 4701 |
Table 2
State | n |
---|---|
GUAM | 2022 |
GULF OF ALASKA | 2337 |
HAWAII WATERS | 3166 |
LAKE ONTARIO | 2016 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.