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