CRC32

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

func.crc32( '<x>' )

Analyze Examples

func.crc32('databend')

┌────────────────────────┐
 func.crc32('databend') 
├────────────────────────┤
             1177678456 
└────────────────────────┘

SQL Syntax

CRC32( '<x>' )

SQL Examples

SELECT CRC32('databend');

┌───────────────────┐
 crc32('databend') 
├───────────────────┤
        1177678456 
└───────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)