last_value
Selects the last encountered value, similar to anyLast
, but could accept NULL.
Mostly it should be used with Window Functions.
Without Window Functions the result will be random if the source stream is not ordered.
examples
CREATE TABLE test_data
(
a Int64,
b Nullable(Int64)
)
ENGINE = Memory;
INSERT INTO test_data (a, b) Values (1,null), (2,3), (4, 5), (6,null)
example1
The NULL value is ignored at default.
select last_value(b) from test_data
┌─last_value_ignore_nulls(b)─┐
│ 5 │
└────────────────────────────┘