SIPHASH64 (Lakehouse v1)
Produces a 64-bit SipHash hash value.
Analyze Syntax
Section titled “Analyze Syntax”func.siphash64(<expr>)Analyze Examples
Section titled “Analyze Examples”func.siphash64('1234567890')
┌───────────────────────────────┐│ func.siphash64('1234567890') │├───────────────────────────────┤│ 18110648197875983073 │└───────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”SIPHASH64(<expr>)Aliases
Section titled “Aliases”SQL Examples
Section titled “SQL Examples”SELECT SIPHASH('1234567890'), SIPHASH64('1234567890');
┌─────────────────────────────────────────────────┐│ siphash('1234567890') │ siphash64('1234567890') │├───────────────────────┼─────────────────────────┤│ 18110648197875983073 │ 18110648197875983073 │└─────────────────────────────────────────────────┘