You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

ISNULL


Checks whether a value is unknown. 


Syntax

ISNULL ( expression )



Input
  • expression - Expression that is checked.


Return type

  • boolean - TRUE of the attribute is unknown, FALSE otherwise


Examples

Suppose the following data model.


Person.namePerson.SequenceNumber
“Bob”654
“Jane”?
Active PersonExpressionResultType
BobISNULL ( Person.SequenceNumber )FALSEboolean
JaneISNULL ( Person.SequenceNumber )TRUEboolean


Back to Top