min() (aggregation function)
Learn how to use the min() function to find the minimum value in a table.
Finds the minimum value of the expression in the table.
Syntax
min
(
expr)
Parameters
Name | Type | Required | Description |
---|---|---|---|
expr | string | ✔️ | The expression for which the minimum value is determined. |
Returns
Returns the minimum value of expr across the table.
Example
This example returns the first record in a table.
StormEvents
| summarize FirstEvent=min(StartTime)
Output
FirstEvent |
---|
2007-01-01T00:00:00Z |
Related content
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.