mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
5 lines
145 B
SQL
5 lines
145 B
SQL
CREATE TABLE ip4test (ip IPv4) ENGINE=Memory;
|
|
INSERT INTO ip4test VALUES (22906492245), (2319771222);
|
|
SELECT * FROM ip4test;
|
|
DROP TABLE ip4test;
|