Is there something like a SQL IN clause in XQuery? For example, I want to do something like this:
IN
where $x/lotClosedYn in ('Y','N')
using the IN keyword gives an error, I use saxon to handle XQuery.
Use = . It works on a set basis, therefore ("Y", "A", "B", "C") = ("Y") returns true.
=
("Y", "A", "B", "C") = ("Y")
Source: https://habr.com/ru/post/900065/More articles:What is the relationship between innerRadiusRatio and Ratio thickness of the GradientDrawable class? - androidAsync / wait does not respond as expected - c #Linq to XML selects the basics of a node for an attribute value - c #as selector chains with an OR condition (alternative result set if main is empty) - javascriptHow to access html 5 localstorage asp.net mvc 3 controller / pipleline - local-storageWhy does this Ruby SSL server / client test work? - ruby | fooobar.comuse maemo camera with python - pythonRelative CSS positioning with negative value and height - cssPowerShell: copy / move files based on regex value while maintaining folder structure etc. - regexHow to manually set Oracle connection string in DbContext - oracleAll Articles