mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
8 lines
171 B
MySQL
8 lines
171 B
MySQL
|
DROP TABLE IF EXISTS test.float;
|
||
|
CREATE TABLE test.float (x Float64) ENGINE = Log;
|
||
|
|
||
|
INSERT INTO test.float VALUES (1e7);
|
||
|
SELECT * FROM test.float;
|
||
|
|
||
|
DROP TABLE test.float;
|