I have a table that contains float values.
+ id | value | +--------|---------| + 1 | 19.22 | + 2 | 32.333 | + 3 | 1.
This worked for me
SELECT * FROM `table` WHERE LENGTH(SUBSTR(`value`,INSTR(`value`,"."))) >3
Counting the decimal .01 is 3, .011 is 4