我有一个XML,我试图用SQL查询。
<QueryB>
<investment name="InvestmentA">
<Account Type="DIVIDEND">
<glsum YTD="0.0000" />
<glsum Inception="111111.0000" />
<glsum QTD="0.0000" />
</Account>
</investment>
<investment name="InvestmentB">
<Account Type="DIVIDEND">
<glsum YTD="0.0000" />
<glsum Inception="222222.0000" />
<glsum QTD="0.0000" />
</Account>
</investment>
<investment name="InvestmentC">
<Account Type="CAP">
<glsum YTD="90.0000" />
<glsum Inception="333333.0800" />
<glsum QTD="90.0000" />
</Account>
</investment>
<investment name="InvestmentD">
<Account Type="CAP">
<glsum YTD="0.0000" />
<glsum Inception="555555.0000" />
<glsum QTD="0.0000" />
</Account>
<Account Type="DIVIDEND">
<glsum YTD="0.0000" />
<glsum Inception="444444.0000" />
<glsum QTD="0.0000" />
</Account>
</investment>
请注意,InvestmentD同时拥有红利和上限账户类型。所以我尝试使用以下内容查询此数据:
select rtrim(ltrim(t.c.value('@name', 'nvarchar(500)'))) as name,
rtrim(ltrim(t.c.value('(Account/@Type)[1]', 'nvarchar(500)'))) as Type,
rtrim(ltrim(t.c.value('(Account/glsum/@YTD)[1]', 'nvarchar(500)'))) as YTD,
rtrim(ltrim(t.c.value('(Account/glsum/@Inception)[1]', 'nvarchar(500)'))) as inception,
rtrim(ltrim(t.c.value('(Account/glsum/@QTD)[1]', 'nvarchar(500)'))) as QTD
from @x.nodes('/QueryB/investment')t(c)
其中@x是XML。这并不奇怪,它不会从InvestmentD中获取两个节点。我无法弄清楚如何解析所有节点。可以理解正确方向的指针。感谢。
答案 0 :(得分:0)
添加cross apply t.c.nodes('Account') as a(c)
并从a.c
获取属性值,而不在xPath表达式中指定Acount
。
名称仍应使用t.c
。