Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
CRC32
On this page
The CRC32() function 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 |
+---------------+Last modified: