1

我正在使用下面的代码构建这个 xml 元素

,( select 
     case when i.id > 0 
         then (select i.id for xml path('parent'),type)
      else null --> don't write this element if id is than 0
end )

我明白了,

 <parent>
  <id>some id number </id></parent>

但是,我正在寻找

<id>some id number </id>

任何建议....

4

1 回答 1

2

Pass the empty string '' instead of 'parent'.

于 2013-12-24T04:09:29.263 回答