MD5SUM (Lakehouse v2)
Returns the MD5 hash of multiple strings concatenated together.
Analyze Syntax
Section titled “Analyze Syntax”func.md5sum(<str1>[, <str2>, ...])Analyze Examples
Section titled “Analyze Examples”func.md5sum('hello', 'world')
┌────────────────────────────────────┐│ 'fc5e038d38a57032085441e7fe7010b0' │└────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”MD5SUM(<str1>[, <str2>, ...])SQL Examples
Section titled “SQL Examples”SELECT MD5SUM('hello', 'world');
┌──────────────────────────────────┐│ fc5e038d38a57032085441e7fe7010b0 │└──────────────────────────────────┘