CRC32
Descriptionβ
Use CRC32 to compute the result.
Syntaxβ
CRC32( <str> )
Parametersβ
parameter | description |
---|---|
<str> | The value to be used for CRC calculation |
Return Valueβ
Returns the Cyclic Redundancy Check value of this string.
Examplesβ
select crc32("abc"),crc32("δΈε½");
+--------------+-----------------+
| crc32('abc') | crc32('δΈε½') |
+--------------+-----------------+
| 891568578 | 737014929 |
+--------------+-----------------+