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