SQL Server FOR XML 封闭元素?
使用 SQL Server 2008,我有一个使用 FOR XML 发出结果集的查询。现在它是一个不合规的片段。
如何将结果 XML 包装在封闭元素中,然后在顶部放置一个简单的 XML 声明和单个架构/命名空间引用以使输出兼容?
谢谢。
Using SQL Server 2008, I have a query that emits a result set using FOR XML. Right now it is a non-compliant fragment.
How can I wrap my result XML in an enclosing element and then put a simple XML declaration on top with a single schema/namespace reference to make the output compliant?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQL Server 中的 XML 数据类型不可能包含 XML 处理指令。
请参阅XML 数据类型的限制
code
具有输出
您可以使用适当的 XML 处理指令将 XML 构建为字符串。
输出
It is not possible to have the XML processing instruction in a XML datatype in SQL Server.
See Limitations of the XML Data Type
This code
Has the output
You can build the XML as a string with the XML processing instruction in place.
Output
将“WITH XMLNAMESPACES”添加到开头,并将 ROOT() 添加到 FOR XML 子句:
Add "WITH XMLNAMESPACES" to the beginning and a ROOT() to the FOR XML clause: