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. Syntaxselect max(aggregate_expression) from table_name; Parameter:aggregate_expression: column name from the table table_name: name of the table. ReturnsThis function returns the maximum value of an expression. Example 1
Next TopicMySQL Math
|