42.

Which SQL keyword is used to retrieve a minimum value?

The SQL MIN aggregate function allows us to select the lowest (minimum) value for a certain column.
Syntax:
SELECT MIN(Column1)
FROM Table1