Skip to content

Returns the MD5 hash of multiple strings concatenated together.

func.md5sum(<str1>[, <str2>, ...])
func.md5sum('hello', 'world')
┌────────────────────────────────────┐
'fc5e038d38a57032085441e7fe7010b0'
└────────────────────────────────────┘
MD5SUM(<str1>[, <str2>, ...])
SELECT MD5SUM('hello', 'world');
┌──────────────────────────────────┐
│ fc5e038d38a57032085441e7fe7010b0 │
└──────────────────────────────────┘