Home >> MySql >> How to find round value in MySql

How to find round value in MySql

return n rounded to m places to the right of decimal point.

Example-1

ROUND(9.18,1)

9.2

Example-2

ROUND(9.11,1)

9.1

Example-3

ROUND(9.8)

10

Example-4

ROUND(9.1)

9

Post Your Comment

Next Questions
How to get rounded data
How to find square root of a number
How to find the greatest value in a list
How to find the least value in a list
How To Find e raised to the power of the specified number
How to find a value extracted from a date
How to find a value extracted from a date or datetime
How to find a value extracted from an internal value

Copyright ©2022 coderraj.com. All Rights Reserved.