MySQL MIN and MAXFinding smallest/largest values. MySQL MIN() and MAX() Functions The MIN() function returns the smallest value of the selected column. The MAX() function returns the largest value of the selected column. ExampleSELECT MIN(Price) FROM Products;Try it Yourself PreviousNext