I'm storing monetary values in a mysql table as floats.
problem being, mysql is rounding the numbers up or down.
ex. 12345.68 gets rounded to 12345.7
How can I stop this or is there a better data type I should be using?
I would like to retain the original values within the 2 decimal places.