9. MySQL: MIN() AND MAX()
1. The MIN() function will return the smallest value in the mentioned column.
2. Likewise, the MAX() will return the largest value.
3. You can assign an alias to the value you extract and display.
MIN() AND MAX():
Syntax:
/*For MIN()*/
SELECT MIN(col...
shenoywrites.hashnode.dev1 min read