I have a field in MySql Decimal(10,2)
and I am trying to insert a float value like 1.1
in it. Unfortunately it is storing that value as 1.10. How can I store that value as it is, because the system will not be able to distinguish between 1.1 and 1.10.
Due to some reason I cannot change the Data Type to VARCHAR OR STRING. On the server side I am using php.
Any help would be greatly appreciated.