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