从SQLServer 返回树型Xml

数据库表结构如下

要得到

Channel    

         account         

               campaign

这样的树型Xml结构, SQL 语句如下:

select ch.ChannelName as "@Text",

       (select a.AccountName as "@Text",

               (select c.CampaignName as "@Text" 

                from Campaign c

                where c.AccountId = A.AccountId

                FOR XML PATH('Campaign'), TYPE

                )  

        from Account a

        where a.ChannelId = ch.ChannelId

        and a.AccountId <> 0

        FOR XML PATH('Account'), TYPE

        )

from Channel ch

where ch.ChannelId <> 0

order by ChannelName

FOR XML PATH('Channel'), ROOT('Tree')

输出结果如下:

<Tree>

  <Channel Text="Astrology">

    <Account Text="MSN Astrology">

      <Campaign Text="Astrology" />

    </Account>

    <Account Text="MSN Astrology">

      <Campaign Text="Astrology - Chinese" />

      <Campaign Text="Astrology - General" />

      <Campaign Text="Astrology - Charts & Reports" />

    </Account>

  </Channel>

  <Channel Text="Autos">

    <Account Text="MSN Auto">

      <Campaign Text="MSN Autos" />

      <Campaign Text="MSN Autos_TSA" />

    </Account>

    <Account Text="MSN Autos">

      <Campaign Text="Certified Pre-Owned/Used" />

      <Campaign Text="General Auto/Car" />

      <Campaign Text="Homepage" />

    </Account>

  </Channel>

</Tree>
 
几点说明:
TYPE : We can leverage the new TYPE directive to generate XML data type instances (otherwise, you will get a textual result that will be entitized if it is embedded in another FOR XML query) and nest sub selections to define the hierarchy.
PATH: The PATH mode allows you to use an XPath-like syntax as a column name, which 
then is mapped into an attribute (e.g., "@a"), element (e.g., 
"e"), sub element structure ("e1/e2"), element content 
("*"), text node ("text()"), or data value ("data()"). As 
with the RAW mode, the default name for the row element is row and can be 
overwritten with an NCName (a name without a prefix).
若data()用于多个数据集时,会输出一个多个数据集以空格为间隔的记录,可参见下面OrderID。
msdn上有一篇例文, 其中有一例子如下(连接的是Northwind数据库):
SELECT CustomerID as "@ID",

      (SELECT OrderID as "data()"

       FROM Orders

       WHERE Customers.CustomerID=Orders.CustomerID

       FOR XML PATH('')

      ) as "@OrderIDs",

       CompanyName,

       ContactTitle as "ContactName/@ContactTitle",

       ContactName as "ContactName/text()",

       PostalCode as "Address/@ZIP",

       Address as "Address/Street",

       City as "Address/City"

FROM Customers

FOR XML PATH('Customer')
 
输出为:
<Customer ID="HUNGC" OrderIDs="10375 10394 10415 10600 10660">

  <CompanyName>Hungry Coyote Import Store</CompanyName>

  <ContactName 

     ContactTitle="Sales Representative">Yoshi Latimer</ContactName>

  <Address ZIP="97827">

    <Street>City Center Plaza 516 Main St.</Street>

    <City>Elgin</City>

  </Address>

</Customer>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值