考虑以下 xml:
<Persons num="3">
<Person age="5" />
<Person age="19" />
</Persons>
需要将此xml提取到关系表中:
Persons table (Age1 int, Age2 int, Age3 int , Age4 int)
解析必须满足以下约束:
- 所有年龄 >=18 的人必须分配到列号最小的列,并且值必须为 18
- 如果未给出此人的年龄,则等于 18
- 所有年龄 <18 岁的人都必须遵守
- 如果少于4人,未提供的必须年龄=-1
在给定的示例中,有 3 个人,提供其中 2 人的年龄:分别为 5 岁和 19 岁。Persons 表的内容必须如下:
18 18 5 -1
有没有最好的方法来使用 xpath?
到目前为止,我可以解析 xml 并分配年龄,但尚不清楚如何进行排序:
declare @XmlData xml =
'<Persons num="3">
<Person age="5" />
<Person age="19" />
</Persons>'
declare @Persons table (Age1 int, Age2 int, Age3 int , Age4 int)
insert into @Persons (Age1, Age2, Age3, Age4)
select ISNULL(Age1, case when Num>= 1 then 18 else -1 end) Age1
, ISNULL(Age2, case when Num>= 2 then 18 else -1 end) Age2
, ISNULL(Age3, case when Num>= 3 then 18 else -1 end) Age3
, ISNULL(Age4, case when Num>= 4 then 18 else -1 end) Age4
from (
select Persons.Person.value('@num','smallint') as Num
,Persons.Person.value('Person[@age<18][1]/@age','smallint') as Age1
,Persons.Person.value('Person[@age<18][2]/@age','smallint') as Age2
,Persons.Person.value('Person[@age<18][3]/@age','smallint') as Age3
,Persons.Person.value('Person[@age<18][4]/@age','smallint') as Age4
from @XmlData.nodes('/Persons') Persons(Person)
) Persons
select *
from @Persons
结果是
5 18 18 -1