如何将root属性设置为SQL Server中FOR XML
的列?
例如,如果您有3个列,如“名字”,“姓氏”和“人物”,那么您希望输出类似于
<root type="person">
<first Name/>
<last name/>
</root>
答案 0 :(得分:1)
尝试以下方法:
select
'person' as '@type'
/*
rest of stuff goes here...
*/
From someTable
FOR xml path('root')