Skip to content

MIN

  • expression: Refers to the column or set of columns in the table. The `MIN()` function will return the smallest value found in this specified column or set of columns.
SELECT MIN(salary) FROM employee;
85000

This query is used to find the minimum value in the ‘salary’ column of the ‘employee’ table.