mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
6 lines
296 B
MySQL
6 lines
296 B
MySQL
|
DROP TABLE IF EXISTS underlying_01796;
|
||
|
CREATE TABLE underlying_01796 (key UInt64) Engine=Log();
|
||
|
INSERT INTO FUNCTION remote('127.1', currentDatabase(), underlying_01796) SELECT toUInt64(number) FROM system.numbers LIMIT 1;
|
||
|
SELECT * FROM underlying_01796 FORMAT Null;
|
||
|
DROP TABLE underlying_01796;
|