CREATE TABLE `sample` (
`number` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
mysql> select * from sample
+-------------------+
| number |
+-------------------+
| 1 |
| 2 |
| 3.5 |
| 4.5 |
| 0.1 |
+-------------------+
How can I get only the three decimal numbers?
+-------------------+
| number |
+-------------------+
| 3.5 |
| 4.5 |
| 0.1 |
+-------------------+