Find Min and Max
Expert User
Verified
The SQL MIN() and MAX() Functions
SELECT MIN(column_name) FROM table_name WHERE condition;
The SQL MIN() and MAX() Functions
The MIN() function returns the smallest value of the selected column.
Comments
Leave a Comment