XXHASH64 (Lakehouse v1)
Calculates an xxHash64 64-bit hash value for a string. The value is returned as a UInt64 or NULL if the argument was NULL.
Analyze Syntax
Section titled “Analyze Syntax”func.xxhash64(<expr>)Analyze Examples
Section titled “Analyze Examples”func.xxhash64('1234567890')
┌─────────────────────────────┐│ func.xxhash64('1234567890') │├─────────────────────────────┤│ 12237639266330420150 │└─────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”XXHASH64(<expr>)SQL Examples
Section titled “SQL Examples”SELECT XXHASH64('1234567890');
┌────────────────────────┐│ xxhash64('1234567890') │├────────────────────────┤│ 12237639266330420150 │└────────────────────────┘