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

NameTypeRequiredDescription
exprstring✔️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