Hello there,
In a table, with a field which type is float (lets say MYFLOAT from MYTABLE) I have this value
6.0949997901916 504
It it a value that was imported from an excel sheet.
when I use
the outcome is correct
6.0950000000000 000
but when I use
the outcome is again 6.0949997901916 504!
How can I fix this?
I want to round every price in that column!
Thanks a lot!!!
In a table, with a field which type is float (lets say MYFLOAT from MYTABLE) I have this value
6.0949997901916 504
It it a value that was imported from an excel sheet.
when I use
Code:
SELECT ROUND(6.0949997901916504,3)
6.0950000000000 000
but when I use
Code:
SELECT ROUND(MYFLOAT,3) FROM MYTABLE
How can I fix this?
I want to round every price in that column!
Thanks a lot!!!
Comment