64
XQuery
•
Find all book titles published after 1995:
FOR
$x
IN
document("bib.xml")
/
bib
/
book
WHERE
$x
/
year
> 1995
RETURN
{
$x
/
title }
Result:
<
title
> abc </
title
>
<
title
> def </
title
>
<
title
> ghi </
title
>