|
NOTE:
These slides have not been updated since 2003. They have been superseded by the book
Anders Møller and Michael Schwartzbach, February 2006 |
|
| THE XML REVOLUTION - TECHNOLOGIES FOR THE FUTURE WEB |
|
The example query:
for $h in document("library.xml")//holding
return
<holding>
{ $h/title,
if ($h/@type = "Journal")
then $h/editor
else $h/author
}
</holding>
|
extracts from the holdings of a library the titles and either editors or authors.
|
| COPYRIGHT © 2000-2003 ANDERS MØLLER & MICHAEL I. SCHWARTZBACH |
|