CRC32
Description
使用CRC32算法计算结果。
Syntax
BIGINT crc32(VARCHAR str)
返回字符串的CRC值。
Example
mysql> select crc32("abc");
+--------------+
| crc32('abc') |
+--------------+
| 891568578 |
+--------------+
mysql> select crc32("中国");
+-----------------+
| crc32('中国') |
+-----------------+
| 737014929 |
+-----------------+
Keywords
CRC32