IS_NOT_NULL (Lakehouse v1)
Checks whether a value is not NULL.
Analyze Syntax
Section titled “Analyze Syntax”func.is_not_null(<expr>)Analyze Examples
Section titled “Analyze Examples”func.is_not_null(1)
┌─────────────────────┐│ func.is_not_null(1) │├─────────────────────┤│ true │└─────────────────────┘SQL Syntax
Section titled “SQL Syntax”IS_NOT_NULL(<expr>)SQL Examples
Section titled “SQL Examples”SELECT IS_NOT_NULL(1);
┌────────────────┐│ is_not_null(1) │├────────────────┤│ true │└────────────────┘