I have this number 0.581183781439, I need to round the number 0.582
I was trying with
SELECT ROUND (0.581183781439, 3) ------------------------------
Maybe you need this?
SELECT ROUND(0.581183781439, 3,1) + .001
but correct rounding is 0.581.
0.581