Skip to content

Instantly share code, notes, and snippets.

@joewiz
Created July 5, 2017 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joewiz/2f23bd4f68dc43b4cac3fe47f53f3146 to your computer and use it in GitHub Desktop.
Save joewiz/2f23bd4f68dc43b4cac3fe47f53f3146 to your computer and use it in GitHub Desktop.
Examples of = and != in XQuery
xquery version "3.1";
(1, 2) = (2, 3),
(1, 2) != (2, 3),
not((1, 2) = (2, 3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment