SQL XML将元素添加到root

时间:2016-04-25 20:29:27

标签: sql sql-server xml tsql xml-namespaces

我有一个通过SQL生成的XML,root看起来像这样:

<ArrayOfKeyValueOfstringPunchListCellModel84zsBx89 
      ns1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

我希望它看起来像这样:

<ArrayOfKeyValueOfstringPunchListCellModel84zsBx89 
      xmlns:i="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

这是我的SQL代码:

DECLARE @persons XML = (
SELECT(
blah blah blah
)FOR XML PATH(''), ROOT('ArrayOfKeyValueOfstringPunchListCellModel84zsBx89'))
set @persons.modify('insert ( attribute ns1 {"http://schemas.microsoft.com/2003/10/Serialization/Arrays"}) into (/ArrayOfKeyValueOfstringPunchListCellModel84zsBx89)[1]')
    SELECT @persons

它返回第一个根,如何让它像我显示的第二个根一样返回?

1 个答案:

答案 0 :(得分:3)

您需要使用WITH XMLNAMESPACES

声明命名空间

试试这个:

WITH XMLNAMESPACES('http://www.w3.org/2001/XMLSchema-instance' AS i
                  ,DEFAULT 'http://schemas.microsoft.com/2003/10/Serialization/Arrays')
SELECT NULL
FOR XML PATH('ArrayOfKeyValueOfstringPunchListCellModel84zsBx89')

结果

<ArrayOfKeyValueOfstringPunchListCellModel84zsBx89 xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />