mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 19:32:07 +00:00
12 lines
275 B
MySQL
12 lines
275 B
MySQL
|
create table test (a Int8) engine = MergeTree order by tuple();
|
||
|
INSERT INTO test
|
||
|
SELECT * FROM (
|
||
|
SELECT number
|
||
|
FROM system.numbers
|
||
|
LIMIT 10
|
||
|
) AS x
|
||
|
INNER JOIN input('a UInt64') AS y ON x.number = y.a
|
||
|
Format CSV 42; -- {serverError INVALID_USAGE_OF_INPUT}
|
||
|
drop table test;
|
||
|
|