/1 min read
SQL MIN Tutorial
How MIN Works
Returns Lowest Value
MIN retrieves the minimum value of a given column.
Syntax
SELECT MIN(column_1) FROM table;
Common Use
Finding the player with the fewest assists — SELECT MIN(assists) FROM players;
NULLs Are Skipped
MIN ignores NULL values — only considers actual numbers.
Master SQL at Noble Desktop
Noble Desktop's SQL Bootcamp covers queries, joins, aggregations, and the full SQL toolkit data analysts use every day.
Learn the basics of the MIN function and how and when to use it in this tutorial.