DOUBLE vs DECIMAL in MySQL - Stack Overflow
The example from MySQL documentation http://dev.mysql.com/doc/refman/5.1/en/problems-with-float.html (i shrink it, documentation for this section is the same for 5.5) mysql> create table t1 (i int, d1 double, d2 double); mysql> insert into t1 values (2, 0...