我正在使用下面的代码构建这个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>
任何建议....
答案 0 :(得分:2)
传递空字符串''而不是'parent'。