mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
32 lines
1.6 KiB
SQL
32 lines
1.6 KiB
SQL
DROP TABLE IF EXISTS array_element_test;
|
|
CREATE TABLE array_element_test (arr Array(Int32), id Int32) ENGINE = Memory;
|
|
insert into array_element_test VALUES ([11,12,13], 2), ([11,12], 3), ([11,12,13], -1), ([11,12], -2), ([11,12], -3), ([11], 0);
|
|
select arr[id] from array_element_test;
|
|
|
|
DROP TABLE IF EXISTS array_element_test;
|
|
CREATE TABLE array_element_test (arr Array(Int32), id UInt32) ENGINE = Memory;
|
|
insert into array_element_test VALUES ([11,12,13], 2), ([11,12], 3), ([11,12,13], 1), ([11,12], 4), ([11], 0);
|
|
select arr[id] from array_element_test;
|
|
|
|
DROP TABLE IF EXISTS array_element_test;
|
|
CREATE TABLE array_element_test (arr Array(String), id Int32) ENGINE = Memory;
|
|
insert into array_element_test VALUES (['Abc','Df','Q'], 2), (['Abc','DEFQ'], 3), (['ABC','Q','ERT'], -1), (['Ab','ber'], -2), (['AB','asd'], -3), (['A'], 0);
|
|
select arr[id] from array_element_test;
|
|
|
|
DROP TABLE IF EXISTS array_element_test;
|
|
CREATE TABLE array_element_test (arr Array(String), id UInt32) ENGINE = Memory;
|
|
insert into array_element_test VALUES (['Abc','Df','Q'], 2), (['Abc','DEFQ'], 3), (['ABC','Q','ERT'], 1), (['Ab','ber'], 4), (['A'], 0);
|
|
select arr[id] from array_element_test;
|
|
|
|
DROP TABLE IF EXISTS array_element_test;
|
|
CREATE TABLE array_element_test (id UInt32) ENGINE = Memory;
|
|
insert into array_element_test VALUES (2), (1), (4), (3), (0);
|
|
select [1, 2, 3] as arr, arr[id] from array_element_test;
|
|
|
|
DROP TABLE IF EXISTS array_element_test;
|
|
CREATE TABLE array_element_test (id Int32) ENGINE = Memory;
|
|
insert into array_element_test VALUES (-2), (1), (-4), (3), (2), (-1), (4), (-3), (0);
|
|
select [1, 2, 3] as arr, arr[id] from array_element_test;
|
|
|
|
DROP TABLE array_element_test;
|