02.06.2013 Views

XML Demystified

XML Demystified

XML Demystified

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

CHAPTER 9 XQuery<br />

List of titles in this catalog:<br />

<br />

<br />

UPC<br />

Artist<br />

Title<br />

Date<br />

<br />

{<br />

for $cd in doc("catalog.xml")/catalog/cd<br />

order by $cd/artist<br />

return<br />

<br />

{data($cd/@upc)}<br />

{data($cd/artist)}<br />

{data($cd/title)}<br />

{local:convertdate(xs:date($cd/date))}<br />

<br />

}<br />

<br />

<br />

<br />

Here’s the output.html file that the XQuery produces:<br />

<br />

<br />

List of titles in this catalog:<br />

<br />

UPC<br />

Artist<br />

Title<br />

Date<br />

<br />

<br />

74646938720<br />

Billy Joel<br />

Songs in the Attic<br />

October 20, 1998<br />

<br />

<br />

74640890529<br />

Bob Dylan<br />

The Times They Are A-Changin'<br />

October 25, 1990<br />

143

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!