Search by attribute value : attribute « XQuery « XML






Search by attribute value


File: Data.xml


<?xml version="1.0"?>
<bib>
  <book year="1988">
    <title>title 1</title>
    <author>
      <last>A</last>
      <first>B</first>
    </author>
    <author>
      <last>C</last>
      <first>D</first>
    </author>
    <publisher>publisher 1</publisher>
    <price>44.20</price>
  </book>

  <book year="2004">
    <title>title 2</title>
    <author>
      <last>E</last>
      <first>F</first>
    </author>
    <publisher>Publisher 2</publisher>
    <price>39.99</price>
  </book>
</bib>


File: Query.xquery

<myNewBib>{
doc("Data.xml")/bib/book[@year > 2005]
}</myNewBib>

 








Related examples in the same category

1.Specifying attributes directly using XML-like syntax