where operator

Learn how to use the where operator to filter a table to the subset of rows that satisfy a predicate.

Filters a table to the subset of rows that satisfy a predicate.

Syntax

T | where Predicate

Parameters

NameTypeRequiredDescription
Tstring✔️Tabular input whose records are to be filtered.
Predicatestring✔️Expression that evaluates to a bool for each row in T.

Returns

Rows in T for which Predicate is true.

Performance tips

  • Use simple comparisons between column names and constants. (‘Constant’ means constant over the table - so now() and ago() are OK, and so are scalar values assigned using a let statement.)

    For example, prefer where Timestamp >= ago(1d) to where bin(Timestamp, 1d) == ago(1d).

  • Simplest terms first: If you have multiple clauses conjoined with and, put first the clauses that involve just one column. So Timestamp > ago(1d) and OpId == EventId is better than the other way around.

For more information, see the summary of available String operators and the summary of available Numerical operators.

Examples

Order comparisons by complexity

The following query returns storm records that report damaged property, are floods, and start and end in different places.

Notice that we put the comparison between two columns last, as the where operator can’t use the index and forces a scan.

StormEvents
| project DamageProperty, EventType, BeginLocation, EndLocation
| where DamageProperty > 0
    and EventType == "Flood"
    and BeginLocation != EndLocation 

The following table only shows the top 10 results. To see the full output, run the query.

DamagePropertyEventTypeBeginLocationEndLocation
5000FloodFAYETTE CITY LOWBER
5000FloodMORRISVILLE WEST WAYNESBURG
10000FloodCOPELAND HARRIS GROVE
5000FloodGLENFORD MT PERRY
25000FloodEAST SENECA BUFFALO AIRPARK ARPT
20000FloodEBENEZER SLOAN
10000FloodBUEL CALHOUN
10000FloodGOODHOPE WEST MILFORD
5000FloodDUNKIRK FOREST
20000FloodFARMINGTON MANNINGTON

Check if column contains string

The following query returns the rows in which the word “cow” appears in any column.

StormEvents
| where * has "cow"