Skip to content

Returns the CRC32 checksum of x, where ‘x’ is expected to be a string and (if possible) is treated as one if it is not.

func.crc32( '<x>' )
func.crc32('databend')
┌────────────────────────┐
│ func.crc32('databend') │
├────────────────────────┤
1177678456
└────────────────────────┘
CRC32( '<x>' )
SELECT CRC32('databend');
┌───────────────────┐
│ crc32('databend') │
├───────────────────┤
1177678456
└───────────────────┘