ROUND(107.345678,-1,0) : ROUND « Math Functions « SQL Server / T-SQL






ROUND(107.345678,-1,0)



2> SELECT ROUND(107.345678,-1,0)
3> GO

-----------
 110.000000

(1 rows affected)

       
       








Related examples in the same category

1.ROUND: Rounds a value to the number of decimal places specified in the second parameter
2.Round the updated data
3.ROUND(100.345678,5,1)
4.select ROUND(12.5,0)
5.select ROUND(12.4999,0)
6.select ROUND(12.4999,1)
7.select ROUND(12.4999,-1) (minus)
8.select ROUND(12.5,0,1)