MySQL MIN() and MAX() Functions
MySQL MIN() and MAX()Â Functions
MySQL MIN() and MAX() Functions
 The MIN() function returns the smallest value of the selected column and the MAX() function returns the largest value of the selected column.
MIN() Syntax SELECTÂ MIN(column_name) FROMÂ table_name WHEREÂ condition; MAX() Syntax SELECTÂ MAX(column_name) FROMÂ table_name WHEREÂ condition;
View On WordPress

















