CRC32
Returns the CRC-32 checksum of a string as an unsigned integer.
Analyze Syntax
func.crc32(<str>)
Analyze Examples
func.crc32('hello')
┌───────────┐
│ 907060870 │
└───────────┘
SQL Syntax
CRC32(<str>)
SQL Examples
SELECT CRC32('hello');
┌───────────┐
│ 907060870 │
└───────────┘