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

    1. <small id='QLCYl'></small><noframes id='QLCYl'>

      <tfoot id='QLCYl'></tfoot>

        对 XML 中的节点值求和时 SQL Server 的奇怪行为

        时间:2023-06-06

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

          <tbody id='jGxUD'></tbody>

            <tfoot id='jGxUD'></tfoot>

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

            • <i id='jGxUD'><tr id='jGxUD'><dt id='jGxUD'><q id='jGxUD'><span id='jGxUD'><b id='jGxUD'><form id='jGxUD'><ins id='jGxUD'></ins><ul id='jGxUD'></ul><sub id='jGxUD'></sub></form><legend id='jGxUD'></legend><bdo id='jGxUD'><pre id='jGxUD'><center id='jGxUD'></center></pre></bdo></b><th id='jGxUD'></th></span></q></dt></tr></i><div id='jGxUD'><tfoot id='jGxUD'></tfoot><dl id='jGxUD'><fieldset id='jGxUD'></fieldset></dl></div>
                • <bdo id='jGxUD'></bdo><ul id='jGxUD'></ul>
                  本文介绍了对 XML 中的节点值求和时 SQL Server 的奇怪行为的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我问了一个关于 sum 节点值的问题:

                  I ask a question about sum node's values:

                  总结 sql server 2008 中的一些 xml 节点值

                  请考虑此代码:

                  Declare @xml xml 
                  set @xml='<Parent ID="p">
                       <Child ID="1">1000000000</Child > 
                       <Child ID="2">234650</Child > 
                       <Child ID="3">0</Child > 
                        </Parent >'
                  
                  Select @xml.value('sum(/Parent[@ID="p"]/Child)','bigint') as Sum
                  

                  如果你执行这个它会重新运行这个错误:

                  if you execute this it retrun this error:

                  Msg 8114, Level 16, State 5, Line 8将数据类型 nvarchar 转换为 bigint 时出错.

                  Msg 8114, Level 16, State 5, Line 8 Error converting data type nvarchar to bigint.

                  问题是它返回这个值:1.00023465E9

                  如果我以这种方式更改上述查询就可以了:

                  if I change the above query this way it being ok:

                  Declare @xml xml 
                  set @xml='<Parent ID="p">
                       <Child ID="1">1000000000</Child > 
                       <Child ID="2">234650</Child > 
                       <Child ID="3">0</Child > 
                        </Parent >'
                  
                  Select @xml.value('sum(/Parent[@ID="p"]/Child)','float') as Sum
                  

                  为什么 Sql Server 这样做?

                  Why Sql Server do this?

                  推荐答案

                  Sql Server 在将带有科学记数法的值从字符串转换为整数时出现问题,这在您运行 xpath 查询时会发生,但是,它可以做到这是 float.

                  Sql Server has a problem converting the value with scientific notation from a string to an integer, as would happen when you run your xpath query, however, it can do this for float.

                  您可以这样编写查询:

                  select @xml.value('sum(/Parent[@ID = "p"]/Child) cast as xs:long?', 'bigint')
                  

                  这篇关于对 XML 中的节点值求和时 SQL Server 的奇怪行为的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何使用 XML 数据更新 SQL 表列 下一篇:创建 XML 文件时在 SQL 中联合

                  相关文章

                  最新文章

                      <legend id='WAlpD'><style id='WAlpD'><dir id='WAlpD'><q id='WAlpD'></q></dir></style></legend>
                      • <bdo id='WAlpD'></bdo><ul id='WAlpD'></ul>

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

                    1. <tfoot id='WAlpD'></tfoot>

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