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