以下のコードを使用してこの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>
なにか提案を....