Outdated Version

You are viewing an older version of this section. View current production version.

CRC32

Hashes the given string or binary data using the CRC32C (Castagnoli CRC32) algorithm.

Syntax

CRC32(plaintext)

Arguments

  • plaintext: the data to hash.

Return Type

Integer

Examples

SELECT crc32('ohai');
+---------------+
| crc32('ohai') |
+---------------+
|    1335520080 |
+---------------+