Is there anything like the SQL IN
clause in XQuery? E.g., I want to do something like this:
where $x/lotClosedYn in ('Y','N')
using IN
keyword is giving an error, I am using saxon for XQuery processing.
Use =
. It works set-based, so ("Y", "A", "B", "C") = ("Y")
returns true.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With