mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
10 lines
343 B
MySQL
10 lines
343 B
MySQL
|
DROP TABLE IF EXISTS test.array;
|
||
|
CREATE TABLE test.array (arr Array(Nullable(Float64))) ENGINE = Memory;
|
||
|
INSERT INTO test.array(arr) values ([1,2]),([3,4]),([5,6]),([7,8]);
|
||
|
|
||
|
select * from test.array where arr > [12.2];
|
||
|
select * from test.array where arr > [null, 12.2];
|
||
|
select * from test.array where arr > [null, 12];
|
||
|
|
||
|
DROP TABLE test.array;
|