IS_NOT_NULL

All functions > COMPARISON > IS_NOT_NULL

Returns TRUE if the expression does NOT evaluate to NULL.

Signatures

Returns: TRUE if expr is not NULL, FALSE otherwise

IS_NOT_NULL(expr: T) → BOOLEAN
sql
ParameterTypeRequiredDescription
exprTYesExpression to test for non-NULL

Notes

  • Opposite of IS_NULL function
  • Only reliable way to test for non-NULL values
  • Using != NULL always returns NULL, not TRUE/FALSE
  • Works with any data type
  • Never returns NULL itself - always Returns TRUE or FALSE
  • Can use operator syntax: expression IS NOT NULL
Last update at: 2026/03/03 16:47:38
Last updated: 2026-03-03 16:48:19