DOUBLE
Double precision floating-point number. A DOUBLE column uses 8 bytes to store large or precise approximate values.
Last updated
Was this helpful?
Was this helpful?
CREATE TABLE t1 (d DOUBLE(5,0) zerofill);
INSERT INTO t1 VALUES (1),(2),(3),(4);
SELECT * FROM t1;
+-------+
| d |
+-------+
| 00001 |
| 00002 |
| 00003 |
| 00004 |
+-------+