I want to insert the value 33.55555 to database. Even after changing mysql row to float or decimal, I am unable to do so correctly.
mysql:
ALTER TABLE `test` CHANGE `test1` `test1` DECIMAL( 10,10 ) NOT NULL
after inserting 33.55555 it is converted to 0.9999999999 via this sql command
ALTER TABLE `test` CHANGE `test1` `test1` FLOAT( 10,10 ) NOT NULL
33.55555 is converted to 1.0000000000