CRC32 (Lakehouse v1)
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.
Analyze Syntax
Section titled “Analyze Syntax”func.crc32( '<x>' )Analyze Examples
Section titled “Analyze Examples”func.crc32('databend')
┌────────────────────────┐│ func.crc32('databend') │├────────────────────────┤│ 1177678456 │└────────────────────────┘SQL Syntax
Section titled “SQL Syntax”CRC32( '<x>' )SQL Examples
Section titled “SQL Examples”SELECT CRC32('databend');
┌───────────────────┐│ crc32('databend') │├───────────────────┤│ 1177678456 │└───────────────────┘