Skip to content

FLOAT8

CREATE TABLE FloatTest (
floatColumn FLOAT8
);
INSERT INTO FloatTest (floatColumn) VALUES (352.424);
SELECT * FROM FloatTest;
+------------+
| floatColumn|
+------------+
| 352.424|
+------------+

In this example, a table named FloatTest is created with one column named floatColumn of type FLOAT8. A row is then inserted with the value 352.424 into floatColumn. The selection query returns this value.