I still have a problem about sorting xml by XQuery.
Please check below code.
As is :
<Main name = "test">
<Sample id="1">
<cal>
<tree abc="123"/>
<tree abc="789/>
<tree-order abc="456/>
</cal>
</Sample>
<Sample id="2">
<cal>
<tree abc="123"/>
<tree abc="789/>
<tree-order abc="456/>
</cal>
</Sample>
<Sample id="3">
<cal>
<tree abc="123"/>
<tree abc="789/>
<tree-order abc="456/>
</cal>
</Sample>
</Main>
I want to order by attribute "abc"
To be 1:
<Main name = "test">
<Sample id="1">
<cal>
<tree abc="123"/>
<tree-order abc="456/>
<tree abc="789/>
</cal>
</Sample>
<Sample id="2">
<cal>
<tree abc="123"/>
<tree-order abc="456/>
<tree abc="789/>
</cal>
</Sample>
<Sample id="3">
<cal>
<tree abc="123"/>
<tree-order abc="456/>
<tree abc="789/>
</cal>
</Sample>
</Main>
after that is it possible to remove attribute??
Final.
<Main name = "test">
<Sample id="1">
<cal>
<tree />
<tree-order />
<tree />
</cal>
</Sample>
<Sample id="2">
<cal>
<tree />
<tree-order />
<tree />
</cal>
</Sample>
<Sample id="3">
<cal>
<tree />
<tree-order />
<tree />
</cal>
</Sample>
</Main>
like this.
so attribute abc is only for sorting.
I tried to like this
select @data.query('for $j in * order by number($j/@abc) return $j ')
then it's will show xml format without sorting.
Is there any way to solve this problem?
Process the XML recursively so that you can perform a sort on the
<cal>
element children and preserve its ancestor structure: