How can get the XML with sorted attributes using XQuery in SQL?
for example for this XML:
<root><book b='' c='' a=''/></root>
must return:
<root><book a='' b='' c=''/></root>
|
How can get the XML with sorted attributes using XQuery in SQL? for example for this XML:
must return:
| |||||
feedback
|
|
From Limitations of the xml Data Type.
So even if you could figure out a way of sorting the attributes, you can not trust that the XML data type in SQL Server will preserve the order you want. | |||
feedback
|
|
Attributes are unordered in XML, so the document is considered the same whichever order the attributes are printed out in. XQuery certainly has no way to change the order of attributes, and I doubt SQL XML does either. | |||
|
feedback
|