IS_NULL
Checks whether a value is NULL.
Analyze Syntax
func.is_null(<expr>)
Analyze Examples
func.is_null(1)
┌─────────────────┐
│ func.is_null(1) │
├─────────────────┤
│ false │
└─────────────────┘
SQL Syntax
IS_NULL(<expr>)
SQL Examples
SELECT IS_NULL(1);
┌────────────┐
│ is_null(1) │
├────────────┤
│ false │
└────────────┘
Last modified April 25, 2024 at 8:41 PM EST: updating conditional functions (c113c0b)