简体   繁体   中英

Sort all attributes of XML in SQL query using XQuery

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>

属性在XML中是无序的,因此无论打印属性的顺序如何,文档都被认为是相同的.XQuery当然无法改变属性的顺序,我怀疑SQL XML也是如此。

Although the order of attributes has no semantic significance, one of the design goals of XML is to be human-readable, so it is not entirely unreasonable to try to generate lexical XML in which the order of attributes is consistent and reflects user expectations: for example <point x="2" y="5" z="7"/> is easier on the eye than <point z="7" x="2" y="5"/> . The Saxon serializer therefore has an option saxon:attribute-order that allows the ordering of attributes in the output XML to be controlled: see http://www.saxonica.com/documentation/index.html#!extensions/output-extras/serialization-parameters

From Limitations of the xml Data Type .

The order of attributes in an XML instance is not preserved. When you query the XML instance stored in the xml type column, the order of attributes in the resulting XML may be different from the original XML instance.

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.

Beyond Mikael Eriksson's helpful answer that SQL Server will not preserve XML attribute ordering, and Michael Kay's special accommodation in Saxon for alphabetically serialization attributes by name, future readers should be warned that the XML Recommendation says that the the order of XML attributes is insignificant :

Note that the order of attribute specifications in a start-tag or empty-element tag is not significant.

Therefore, XML tools generally do not care about attribute ordering, and unless you are concerned with XML normalization/canonicalization 1 , neither should you . Without provision for attribute ordering in the XML Recommendation, achieving an ordering by leveraging special mechanisms such as saxon:attribute-order will likely prove to be only a temporary, localized success as the XML ecosystem will not guarantee any ordering as your XML passes through tools and toolchains through its life cycle.

1 For those rare circumstances, see the section on attribute processing in the XML Normalization Recommendation or the Canonical XML Recommendation .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM