distinct operator

Learn how to use the distinct operator to create a table with the distinct combination of the columns of the input table.

Produces a table with the distinct combination of the provided columns of the input table.

Syntax

T | distinct ColumnName[,ColumnName2, ...]

Parameters

NameTypeRequiredDescription
ColumnNamestring✔️The column name to search for distinct values.

Example

Shows distinct combination of states and type of events that led to over 45 direct injuries.

StormEvents
| where InjuriesDirect > 45
| distinct State, EventType

Output

StateEventType
TEXASWinter Weather
KANSASTornado
MISSOURIExcessive Heat
OKLAHOMAThunderstorm Wind
OKLAHOMAExcessive Heat
ALABAMATornado
ALABAMAHeat
TENNESSEEHeat
CALIFORNIAWildfire

If the group by keys are of high cardinalities, try summarize by ... with the shuffle strategy.