gpt4 book ai didi

sql-server - 将 xml 列值包装到外部以进行 xml 路径查询

转载 作者:数据小太阳 更新时间:2023-10-29 02:32:19 25 4
gpt4 key购买 nike

我想将列中的 xml 包装到 out for xml 路径查询中,而不用作为元素的列名。

declare @tab table (col xml)
insert @tab
select '<element/>'

select 'val' AS "@att" , col
from @tab
for xml path ('ROOT')

这给出了

<ROOT att="val">
<col>
<element />
</col>
</ROOT>

但是我想要

<ROOT att="val">
<element />
</ROOT>

非常感谢所有帮助。

最佳答案

select
'val' AS "@att",
(select col)
from @tab
for xml path ('ROOT')

关于sql-server - 将 xml 列值包装到外部以进行 xml 路径查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5259319/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com