distinct – Return Unique Rows
The distinct operator in Kusto Query Language (KQL) is used to return only unique combinations of values from one or more columns. It effectively removes duplicate rows from the result set.
Example:
TableName
| distinct Column1, Column2, ...
Thanks
JK