<bdo id='gAZaY'></bdo><ul id='gAZaY'></ul>

  1. <legend id='gAZaY'><style id='gAZaY'><dir id='gAZaY'><q id='gAZaY'></q></dir></style></legend><tfoot id='gAZaY'></tfoot>
    <i id='gAZaY'><tr id='gAZaY'><dt id='gAZaY'><q id='gAZaY'><span id='gAZaY'><b id='gAZaY'><form id='gAZaY'><ins id='gAZaY'></ins><ul id='gAZaY'></ul><sub id='gAZaY'></sub></form><legend id='gAZaY'></legend><bdo id='gAZaY'><pre id='gAZaY'><center id='gAZaY'></center></pre></bdo></b><th id='gAZaY'></th></span></q></dt></tr></i><div id='gAZaY'><tfoot id='gAZaY'></tfoot><dl id='gAZaY'><fieldset id='gAZaY'></fieldset></dl></div>
  2. <small id='gAZaY'></small><noframes id='gAZaY'>

      从 SQL Server 表以正确的语法生成 XML

      时间:2023-06-07

    1. <tfoot id='iZxuE'></tfoot>
      1. <i id='iZxuE'><tr id='iZxuE'><dt id='iZxuE'><q id='iZxuE'><span id='iZxuE'><b id='iZxuE'><form id='iZxuE'><ins id='iZxuE'></ins><ul id='iZxuE'></ul><sub id='iZxuE'></sub></form><legend id='iZxuE'></legend><bdo id='iZxuE'><pre id='iZxuE'><center id='iZxuE'></center></pre></bdo></b><th id='iZxuE'></th></span></q></dt></tr></i><div id='iZxuE'><tfoot id='iZxuE'></tfoot><dl id='iZxuE'><fieldset id='iZxuE'></fieldset></dl></div>

        <small id='iZxuE'></small><noframes id='iZxuE'>

            <tbody id='iZxuE'></tbody>
          <legend id='iZxuE'><style id='iZxuE'><dir id='iZxuE'><q id='iZxuE'></q></dir></style></legend>

            • <bdo id='iZxuE'></bdo><ul id='iZxuE'></ul>

                本文介绍了从 SQL Server 表以正确的语法生成 XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                如何写一条SQL语句生成这样的XML

                How to write a SQL statement to generate XML like this

                <ROOT>
                  <Production.Product> 
                     <ProductID>1 </ProductID>
                     <Name>Adjustable Race</Name>
                     ........
                  </Production.Product>
                </ROOT>
                

                目前我正在使用

                SELECT * FROM Production.Product
                    FOR XML auto
                

                结果是:

                <ROOT>
                   <Production.Product ProductID="1" Name="Adjustable Race" 
                       ProductNumber="AR-5381" MakeFlag="0" FinishedGoodsFlag="0" 
                       SafetyStockLevel="1000" ReorderPoint="750" StandardCost="0.0000" 
                       ListPrice="0.0000" DaysToManufacture="0" SellStartDate="1998-06-01T00:00:00" 
                       rowguid="694215B7-08F7-4C0D-ACB1-D734BA44C0C8" 
                       ModifiedDate="2004-03-11T10:01:36.827" />
                

                推荐答案

                一种简单的方法是使用:

                One simple way would be to use:

                SELECT * 
                FROM Production.Product
                FOR XML AUTO, ELEMENTS
                

                然后,您的数据应存储在 节点内的 XML 元素中.

                Then, your data should be stored in XML elements inside the <Production.Product> node.

                如果您需要更多控制,那么您应该查看 FOR XML PATH 语法 - 查看关于 SQL Server 2005 中 FOR XML 的新增功能 解释了 FOR XML PATH (以及其他新功能).

                If you need even more control, then you should look at the FOR XML PATH syntax - check out this MSDN article on What's new in FOR XML in SQL Server 2005 which explains the FOR XML PATH (among other new features).

                基本上,使用 FOR XML PATH,您可以非常轻松地控制事物的呈现方式 - 作为元素或作为属性 - 类似于:

                Basically, with FOR XML PATH, you can control very easily how things are rendered - as elements or as attributes - something like:

                SELECT 
                    ProductID AS '@ProductID',  -- rendered as attribute on XML node
                    Name, ProductNumber,        -- all rendered as elements inside XML node
                    .....
                FROM Production.Product
                FOR XML PATH('NewProductNode')   -- define a new name for the XML node 
                

                这会给你类似的东西:

                <NewProductNode ProductID="1">
                   <Name>Adjustabel Race</Name>
                   <ProductNumber>AR-5381</ProductNumber>
                   .....
                </NewProductNode> 
                

                这篇关于从 SQL Server 表以正确的语法生成 XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:SELECT FOR XML 查询速度慢吗? 下一篇:从父节点 xml sql server 检索所有子节点

                相关文章

                最新文章

                <i id='xpMmq'><tr id='xpMmq'><dt id='xpMmq'><q id='xpMmq'><span id='xpMmq'><b id='xpMmq'><form id='xpMmq'><ins id='xpMmq'></ins><ul id='xpMmq'></ul><sub id='xpMmq'></sub></form><legend id='xpMmq'></legend><bdo id='xpMmq'><pre id='xpMmq'><center id='xpMmq'></center></pre></bdo></b><th id='xpMmq'></th></span></q></dt></tr></i><div id='xpMmq'><tfoot id='xpMmq'></tfoot><dl id='xpMmq'><fieldset id='xpMmq'></fieldset></dl></div>
                  <bdo id='xpMmq'></bdo><ul id='xpMmq'></ul>
              • <tfoot id='xpMmq'></tfoot>

                <legend id='xpMmq'><style id='xpMmq'><dir id='xpMmq'><q id='xpMmq'></q></dir></style></legend>

                  <small id='xpMmq'></small><noframes id='xpMmq'>