ClickHouse/docs/en/sql-reference/aggregate-functions/reference/anylast_respect_nulls.md
2024-05-04 16:20:58 +02:00

967 B

slug sidebar_position
/en/sql-reference/aggregate-functions/reference/anylast_respect_nulls 104

anyLast_respect_nulls

Selects the last value encountered, irregardless of whether it is NULL or not.

Syntax

anyLast_respect_nulls(column)

Parameters

  • column: The column name.

Returned value

  • The last value encountered, irregardless of whether it is NULL or not.

Example

Query:

CREATE TABLE any_last_nulls (city Nullable(String)) ENGINE=Log;

INSERT INTO any_last_nulls (city) VALUES ('Amsterdam'),(NULL),('New York'),('Tokyo'),('Valencia'),(NULL);

SELECT anyLast(city), anyLast_respect_nulls(city) FROM any_last_nulls;
┌─anyLast(city)─┬─anyLast_respect_nulls(city)─┐
│ Valencia      │ ᴺᵁᴸᴸ                        │
└───────────────┴─────────────────────────────┘