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