
sql.ifnull( expr1 as Sequence, expr2 as Sequence ) as Sequence
If the first expression is NULL, then the value of the second expression is returned. If not null, the first expression is returned.
| Parameters | |
|---|---|
| expr1 | First expression to be evaluated. |
| expr2 | Second expression to be evaluated. |
sql.ifnull(null,1) => 1
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.