CRC32()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Xpand
Topics on this page:
Overview
Computes a cyclic redundancy check value and returns a 32-bit unsigned value.
USAGE
CRC32(string)
Argument Name | Description |
---|---|
| The string to examine |
DETAILS
CRC32()
is a mathematical function that computes a cyclic redundancy check value and returns a 32-bit unsigned integer.
If the supplied argument is not a string, it is converted into a string, when possible.
A NULL
is returned if the argument is NULL
.
EXAMPLES
SELECT CRC32('mariadb');
+------------------+
| CRC32('mariadb') |
+------------------+
| 2594253378 |
+------------------+