CRC32C
Compute CRC32C checksum. This function calculates a cyclic redundancy check value using the Castagnoli polynomial.
Syntax
CRC32C([par,]expr)Description
Examples
SELECT CRC32C('MariaDB');
+-------------------+
| CRC32C('MariaDB') |
+-------------------+
| 809606978 |
+-------------------+
SELECT CRC32C(CRC32C('Maria'),'DB');
+------------------------------+
| CRC32C(CRC32C('Maria'),'DB') |
+------------------------------+
| 809606978 |
+------------------------------+Last updated
Was this helpful?

