Scalar functions
sort operator
Sorts the rows of the dataset into an order by one or more columns.
Syntax
| sort by Expression [asc | desc] [, ...]Arguments
| name | type | description |
|---|---|---|
| expression | expression | A scalar expression by which to sort. The value type must be numeric, date, time or string. |
| asc | string | Sort by into ascending order, low to high. |
| desc | string | Sort by into descending order, high to low. |
Example
['http-logs']
| where method == 'GET'
| sort by method