for example,
round with 0.25
2.25 = 2.2
2.27 = 2.3
i want to round after point value
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Dec 4, 2013, 12:38 AM
SELECT ROUND(REVERSE(ROUND(REVERSE(2.26),1)),1)
Hardik PatelPosted Dec 4, 2013, 12:24 AM
Sanjeeb LenkaPosted Dec 3, 2013, 7:04 AM
select round(2.25,1)
o/p-2.26
select round(2.24,1)
o/p: 2.20