ISNOTNULL (Lakehouse v2)
Checks whether a value is not NULL. Returns 1 if not NULL, 0 otherwise.
Analyze Syntax
Section titled “Analyze Syntax”func.isnotnull(<expr>)Analyze Examples
Section titled “Analyze Examples”func.isnotnull(1)
┌───┐│ 1 │└───┘SQL Syntax
Section titled “SQL Syntax”ISNOTNULL(<expr>)SQL Examples
Section titled “SQL Examples”SELECT ISNOTNULL(1);
┌───┐│ 1 │└───┘