Create an aggregate checksum of a column - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T10:19:38Zhttp://stackoverflow.com/feeds/question/591234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/591234/create-an-aggregate-checksum-of-a-column3Create an aggregate checksum of a columnʞɔıu2009-02-26T16:10:36Z2009-02-27T00:12:21Z
<p>I want to compute a checksum of all of the values of a column in aggregate.</p>
<p>In other words, I want to do some equivalent of </p>
<pre><code>md5(group_concat(some_column))
</code></pre>
<p>The problem with this approach is:</p>
<ol>
<li>It's inefficient. It has to concat all of the values of the column as a string in some temporary storage before passing it to the md5 function</li>
<li>group_concat has a max length of 1024, after which everything else will be truncated.</li>
</ol>
<p>(In case you're wondering, you can ensure that the concat of the values is in a consistent order, however, as believe it or not group_concat() accepts an order by clause within it, e.g. <code>group_concat(some_column order by some_column)</code>)</p>
<p>MySQL offers the nonstandard bitwise aggregate functions BIT_AND(), BIT_OR() and BIT_XOR() which I presume would be useful for this problem. The column is numeric in this case but I would be interested to know if there was a way to do it with string columns.</p>
<p>For this particular application, the checksum does not have to be cryptologically safe.</p>
http://stackoverflow.com/questions/591234/create-an-aggregate-checksum-of-a-column/591249#5912491Answer by Jason Cohen for Create an aggregate checksum of a columnJason Cohen2009-02-26T16:13:59Z2009-02-26T16:13:59Z<p>If the column is numeric, you could do this:</p>
<pre><code>SELECT BIT_XOR(mycolumn) + SUM(mycolumn)
</code></pre>
<p>Of course this is easy to defeat, but it will include all the bits in the column.</p>
http://stackoverflow.com/questions/591234/create-an-aggregate-checksum-of-a-column/591329#5913291Answer by Quassnoi for Create an aggregate checksum of a columnQuassnoi2009-02-26T16:31:04Z2009-02-26T16:31:04Z<pre><code>SELECT crc
FROM
(
SELECT @r := MD5(CONCAT(some_column, @r)) AS crc,
@c := @c + 1 AS cnt
FROM
(
SELECT @r := '', @c := 0
) rc,
(
SELECT some_column
FROM mytable
WHERE condition = TRUE
ORDER BY
other_column
) k
) ci
WHERE cnt = @c
</code></pre>
http://stackoverflow.com/questions/591234/create-an-aggregate-checksum-of-a-column/593061#5930611Answer by Jacob Gabrielson for Create an aggregate checksum of a columnJacob Gabrielson2009-02-27T00:12:21Z2009-02-27T00:12:21Z<p>It seems like you might as well use <code>crc32</code> instead of <code>md5</code> if you don't care about cryptographic strength. I think this:</p>
<pre><code>select sum(crc32(some_column)) from some_table;
</code></pre>
<p>would work on strings. It might be inefficient as perhaps MySQL would create a temporary table (especially if you added an <code>order by</code>).</p>