The order by clause : order by « XQuery « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » XQuery » order by 
The order by clause


File: Data.xml

<inventory>
  <car model="A" id="0001" />
  <car model="B" id="0002" />
  <car model="B" id="0003" />
  <car model="C" id="0004" />
  <car model="C" id="0004" />
  <car model="A" id="0001" />
</inventory>



File: Query.xquery

for $car in doc("Data.xml")//car
order by $car/@id
return $car

Output:

<?xml version="1.0" encoding="UTF-8"?>
<car model="A" id="0001"/>
<car model="A" id="0001"/>
<car model="B" id="0002"/>
<car model="B" id="0003"/>
<car model="C" id="0004"/>
<car model="C" id="0004"/>

 
Related examples in the same category
1.order by clause demo
2.Using multiple inventorying specifications
3.Inadvertent resorting in document inventory
4.without inadvertent resorting
5.Using an inventory comparison
6.order by stateCt
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.