round a number in SQL
Posted
by LIX
on Stack Overflow
See other posts from Stack Overflow
or by LIX
Published on 2010-04-28T06:04:46Z
Indexed on
2010/04/28
6:13 UTC
Read the original article
Hit count: 187
sql
I have a number and I use ROUND() function in SQL :
SELECT ROUND(1.81999,2,1)
I want the result 1.82, not 1.81.
I don't know where my mistake is.
© Stack Overflow or respective owner