C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL MAX() FunctionThe max() is a Math function of MySQL. This function is used to get the maximum number of the given column name. Syntax
 select max(aggregate_expression) from table_name; Parameter:
 aggregate_expression: column name from the table table_name: name of the table. Returns
 This function returns the maximum value of an expression. Example 1  
Next TopicMySQL Math
 |