NULL_OR_EMPTY (Lakehouse v2)
Checks whether a string is NULL or empty. Returns 1 if true, 0 otherwise.
Analyze Syntax
Section titled “Analyze Syntax”func.null_or_empty(<str>)Analyze Examples
Section titled “Analyze Examples”func.null_or_empty('')
┌───┐│ 1 │└───┘SQL Syntax
Section titled “SQL Syntax”NULL_OR_EMPTY(<str>)SQL Examples
Section titled “SQL Examples”SELECT NULL_OR_EMPTY('');
┌───┐│ 1 │└───┘