mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
10 lines
308 B
SQL
10 lines
308 B
SQL
DROP TABLE IF EXISTS array;
|
|
CREATE TABLE array (arr Array(Nullable(Float64))) ENGINE = Memory;
|
|
INSERT INTO array(arr) values ([1,2]),([3,4]),([5,6]),([7,8]);
|
|
|
|
select * from array where arr > [12.2];
|
|
select * from array where arr > [null, 12.2];
|
|
select * from array where arr > [null, 12];
|
|
|
|
DROP TABLE array;
|