C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL ROUND() FunctionThe round() is a Math function of MySQL. This function is used to round off the given number. Syntaxselect round(number); Parameter:number: value to be round off. ReturnsThis function returns a number rounded to a certain number of decimal places. Example 1Select round(164.325); Output: Example 2Select round(46.225); Output:
Next TopicMySQL Math
|