mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
17 lines
478 B
SQL
17 lines
478 B
SQL
-- { echo }
|
|
|
|
-- create table
|
|
drop table if exists test;
|
|
create table test(`a` Nullable(Int32), `b` Nullable(Int32)) ENGINE = Memory;
|
|
insert into test (a,b) values (1,null), (2,3), (4, 5), (6,null);
|
|
|
|
-- first value
|
|
select first_value(b) from test;
|
|
select first_value(b) ignore nulls from test;
|
|
select first_value(b) respect nulls from test;
|
|
|
|
-- last value
|
|
select last_value(b) from test;
|
|
select last_value(b) ignore nulls from test;
|
|
select last_value(b) respect nulls from test;
|