I am using following query in MYSQL to multiply value in colname by 1000. data type of colname is double.It works fine but for one value in table it is giving wrong output. value is 1066203.9 and after update value should be 1066203900 but output is 1066203899.9999999.
UPDATE tablename SET colname=colname*1000 WHERE id=1