CRC32

Learn how to use the CRC32 string function in PlaidCloud Lakehouse. Returns the CRC-32 checksum of a string as an unsigned integer - with syntax and examples.

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  
└───────────┘