min

This section contains reference documentation for the min function.

Get the minimum value in a group

Signature

MIN(colName)

Usage Examples

These examples are based on the Batch Quick Start.

select min(yearID) AS value
from baseballStats 
value

1871

Last updated