From http://www.w3schools.com (Copyright Refsnes Data)

XQuery Tutorial

« W3Schools Home Next Chapter »

XQUERY

XQuery is to XML what SQL is to database tables.

XQuery was designed to query XML data.

Start learning XQuery now!

XQuery Example

for $x in doc("books.xml")/bookstore/book
where $x/price>30
order by $x/title
return $x/title


XQuery Reference

At W3Schools you will find a complete reference of all the operators, built-in functions, and data types in XQuery 1.0.

XQuery Reference


« W3Schools Home Next Chapter »

From http://www.w3schools.com (Copyright Refsnes Data)