Handling null values in XQuery is simple, but not intuitive to those who are new to the language.
Beginners often try to use expressions such as Eq NULL or is null in their tests. The correct way
to test for null values in XML tags is to use one of the following expressions:
not exists(column)
or
empty( column )
|
Post a Comment