XQuery - XPath
XQuery è compatibile con XPath. Utilizza espressioni XPath per limitare i risultati della ricerca sulle raccolte XML. Per ulteriori dettagli su come utilizzare XPath, vedere il nostro tutorial su XPath .
Ricorda la seguente espressione XPath che abbiamo usato in precedenza per ottenere l'elenco dei libri.
doc("books.xml")/books/book
Esempi XPath
Useremo il file books.xml e vi applicheremo XQuery.
books.xml
<?xml version="1.0" encoding="UTF-8"?>
<books>
<book category="JAVA">
<title lang="en">Learn Java in 24 Hours</title>
<author>Robert</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="DOTNET">
<title lang="en">Learn .Net in 24 hours</title>
<author>Peter</author>
<year>2011</year>
<price>40.50</price>
</book>
<book category="XML">
<title lang="en">Learn XQuery in 24 hours</title>
<author>Robert</author>
<author>Peter</author>
<year>2013</year>
<price>50.00</price>
</book>
<book category="XML">
<title lang="en">Learn XPath in 24 hours</title>
<author>Jay Ban</author>
<year>2010</year>
<price>16.50</price>
</book>
</books>
Abbiamo fornito qui tre versioni di un'istruzione XQuery che soddisfano lo stesso obiettivo di visualizzare i titoli dei libri con un valore di prezzo maggiore di 30.
XQuery - Versione 1
(: read the entire xml document :)
let $books := doc("books.xml") for $x in $books/books/book where $x/price > 30
return $x/title
Produzione
<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>
XQuery - Versione 2
(: read all books :)
let $books := doc("books.xml")/books/book
for $x in $books
where $x/price > 30 return $x/title
Produzione
<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>
XQuery - Versione 3
(: read books with price > 30 :)
let $books := doc("books.xml")/books/book[price > 30] for $x in $books return $x/title
Produzione
<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>
Verifica il risultato
Per verificare il risultato, sostituire il contenuto di books.xqy (fornito nel capitolo Configurazione dell'ambiente ) con l'espressione XQuery sopra ed eseguire il programma java XQueryTester.