mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
4 lines
269 B
SQL
4 lines
269 B
SQL
CREATE TABLE 03013_position_const_start_pos (n Int16) ENGINE = Memory;
|
|
INSERT INTO 03013_position_const_start_pos SELECT * FROM generateRandom() LIMIT 1000;
|
|
SELECT position(concat(NULLIF(1, 1), materialize(3)), 'ca', 2) FROM 03013_position_const_start_pos FORMAT Null;
|