In a table, with a field which type is float (lets say MYFLOAT from MYTABLE) I have this value
6.0949997901916504
It it a value that was imported from an excel sheet.
when I use
Expand|Select|Wrap|Line Numbers
- SELECT ROUND(6.0949997901916504,3)
6.0950000000000000
but when I use
Expand|Select|Wrap|Line Numbers
- SELECT ROUND(MYFLOAT,3) FROM MYTABLE
How can I fix this?
I want to round every price in that column!
Thanks a lot!!!