mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
36 lines
1.4 KiB
SQL
36 lines
1.4 KiB
SQL
DROP TABLE IF EXISTS set;
|
|
DROP TABLE IF EXISTS set2;
|
|
DROP TABLE IF EXISTS tab;
|
|
|
|
CREATE TABLE set (x String) ENGINE = Set;
|
|
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set;
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s NOT IN set;
|
|
|
|
INSERT INTO set VALUES ('Hello'), ('World');
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set;
|
|
|
|
RENAME TABLE set TO set2;
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set2;
|
|
|
|
INSERT INTO set2 VALUES ('Hello'), ('World');
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set2;
|
|
|
|
INSERT INTO set2 VALUES ('abc'), ('World');
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set2;
|
|
|
|
DETACH TABLE set2;
|
|
ATTACH TABLE set2;
|
|
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set2;
|
|
|
|
RENAME TABLE set2 TO set;
|
|
SELECT arrayJoin(['Hello', 'test', 'World', 'world', 'abc', 'xyz']) AS s WHERE s IN set;
|
|
|
|
create table tab (x String) engine = MergeTree order by x as select 'Hello';
|
|
SELECT * FROM tab PREWHERE x IN (set) WHERE x IN (set) LIMIT 1 settings allow_experimental_analyzer=0;
|
|
SELECT * FROM tab PREWHERE x IN (set) WHERE x IN (set) LIMIT 1 settings allow_experimental_analyzer=1;
|
|
DROP TABLE tab;
|
|
|
|
DROP TABLE set;
|