MD5
Returns the MD5 hash of a string as a 32-character hexadecimal string.
Analyze Syntax
func.md5(<str>)
Analyze Examples
func.md5('hello')
┌────────────────────────────────────┐
│ '5d41402abc4b2a76b9719d911017c592' │
└────────────────────────────────────┘
SQL Syntax
MD5(<str>)
SQL Examples
SELECT MD5('hello');
┌──────────────────────────────────┐
│ 5d41402abc4b2a76b9719d911017c592 │
└──────────────────────────────────┘