<tfoot id='gcUkr'></tfoot>

    • <bdo id='gcUkr'></bdo><ul id='gcUkr'></ul>
  1. <legend id='gcUkr'><style id='gcUkr'><dir id='gcUkr'><q id='gcUkr'></q></dir></style></legend>
  2. <small id='gcUkr'></small><noframes id='gcUkr'>

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

      CHECKSUM 和 CHECKSUM_AGG:算法是什么?

      CHECKSUM and CHECKSUM_AGG: What#39;s the algorithm?(CHECKSUM 和 CHECKSUM_AGG:算法是什么?)
      <tfoot id='iFzi8'></tfoot>

        <tbody id='iFzi8'></tbody>

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

      • <bdo id='iFzi8'></bdo><ul id='iFzi8'></ul>
            1. <i id='iFzi8'><tr id='iFzi8'><dt id='iFzi8'><q id='iFzi8'><span id='iFzi8'><b id='iFzi8'><form id='iFzi8'><ins id='iFzi8'></ins><ul id='iFzi8'></ul><sub id='iFzi8'></sub></form><legend id='iFzi8'></legend><bdo id='iFzi8'><pre id='iFzi8'><center id='iFzi8'></center></pre></bdo></b><th id='iFzi8'></th></span></q></dt></tr></i><div id='iFzi8'><tfoot id='iFzi8'></tfoot><dl id='iFzi8'><fieldset id='iFzi8'></fieldset></dl></div>
              • <legend id='iFzi8'><style id='iFzi8'><dir id='iFzi8'><q id='iFzi8'></q></dir></style></legend>
                本文介绍了CHECKSUM 和 CHECKSUM_AGG:算法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我们对sql server中的一些数据进行校验和如下:

                We perform checksums of some data in sql server as follows:

                declare @cs int;
                select 
                    @cs = CHECKSUM_AGG(CHECKSUM(someid, position))
                from 
                    SomeTable
                where 
                    userid = @userId
                group by 
                    userid;
                

                这些数据随后会与客户共享.我们希望能够在客户端重复校验和......但是似乎没有关于如何计算上述函数中的校验和的任何信息.谁能给我指点一下?

                This data is then shared with clients. We'd like to be able to repeat the checksum at the client end... however there doesn't seem to be any info about how the checksums in the functions above are calculated. Can anyone enlighten me?

                推荐答案

                在 SQL Server 论坛上,在此 页面,它说:

                On SQL Server Forum, at this page, it's stated:

                SQL Server 中内置的 CHECKSUM 函数建立在一系列 4 位左旋转异或运算之上.请参阅此帖子了解更多说明.

                The built-in CHECKSUM function in SQL Server is built on a series of 4 bit left rotational xor operations. See this post for more explanation.

                这篇关于CHECKSUM 和 CHECKSUM_AGG:算法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                SQL query to group by day(按天分组的 SQL 查询)
                Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                sql group by versus distinct(sql group by 与不同)
                How to return a incremental group number per group in SQL(如何在SQL中返回每个组的增量组号)
                Count number of records returned by group by(统计分组返回的记录数)
                SQL GROUP BY CASE statement with aggregate function(带聚合函数的 SQL GROUP BY CASE 语句)
                  <tbody id='R4xnd'></tbody>

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

                    • <tfoot id='R4xnd'></tfoot>

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

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