Ok so I have a weird issue where I am running a query that in the select it is taking the result and multiplying that by 2000 i.e. 0.0025 * 2000 and giving me 4.9999888419121 or something when it should be 5. I have seen that there are issues with this but I have yet to find if there was a solution. I thought that math was like a basic computing function why would it fail in such a simple request as multiplication.
I am not sure that there is a fix for this, I really have been researching it but I figure that if anyone knew of one it would be here.
thanks again
example:
SELECT (table.rate * 2000) as per_ton ...
I have tried the + 0.0000 tricks and all without luck