XQuery - XPath

XQuery é compatível com XPath. Ele usa expressões XPath para restringir os resultados da pesquisa em coleções XML. Para obter mais detalhes sobre como usar XPath, consulte nosso Tutorial XPath .

Lembre-se da seguinte expressão XPath que usamos anteriormente para obter a lista de livros.

doc("books.xml")/books/book

Exemplos XPath

Usaremos o arquivo books.xml e aplicaremos XQuery a ele.

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>

Fornecemos aqui três versões de uma instrução XQuery que cumprem o mesmo objetivo de exibir os títulos dos livros com um valor de preço superior a 30.

XQuery - Versão 1

(: read the entire xml document :)
let $books := doc("books.xml") for $x in $books/books/book where $x/price > 30
return $x/title

Resultado

<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>

XQuery - Versão 2

(: read all books :)
let $books := doc("books.xml")/books/book

for $x in $books
where $x/price > 30 return $x/title

Resultado

<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>

XQuery - Versão 3

(: read books with price > 30 :)
let $books := doc("books.xml")/books/book[price > 30] for $x in $books return $x/title

Resultado

<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>

Verifique o resultado

Para verificar o resultado, substitua o conteúdo de books.xqy (fornecido no capítulo Configuração do ambiente ) pela expressão XQuery acima e execute o programa java XQueryTester.