2. Language Elements : Expressions : Operators : Is [Not] Null Operator
 
Share this page                  
Is [Not] Null Operator
The is [not] null operator tests whether an expression is null. The syntax of this operator is:
expression is [not] null
The following code is an example:
if salary is null then
    sal_msg = 'Salary amount is unknown.'
endif;