i have following samplecreate table table1(id int identity(1,1),value1 float --varchar(10) --decimal(8,3))insert into table1select '1.22' union allselect '1.45' union allselect '0.67' union allselect '2.04' union allselect '2.106' union allselect '11.091'
i want value1 to be rounded (up or down) as following:1.22 -> 1.20 (down)1.45 -> 1.45 (no change)0.67 -> 0.70 (up)2.04 -> 2.05 (up)2.106 -> 2.10 (down)11.091 -> 11.10 (up)thanks