{ “title”: “CRC32”, “language”: “en” }

Description

Use CRC32 to compute the result.

Syntax

BIGINT crc32 (VARCHAR str)

Returns the Cyclic Redundancy Check value of this string.

Example

mysql> select crc32("abc");
+--------------+
| crc32('abc') |
+--------------+
|    891568578 |
+--------------+

Keywords

CRC32