我正在使用下面的代码构建这个 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>
任何建议....