The MIN() function returns the smallest value of the selected column.
SELECT
MIN (column_1)
FROM [table]
The MAX() function returns the largest value of the selected column.
SELECT
MAX (column_1)
FROM [table]
SELECT
MIN (column_1)
FROM [table]
SELECT
MAX (column_1)
FROM [table]