MSSQLAggregate FunctionsMIN
AVG

MINAggregate Functions

MAX

Returns the minimum value.

Syntax

MIN(expr)

Example

Enter values below to update the example in real time.

price
lowest_price
products
SELECT MIN(price) AS lowest_price FROM products;