MD5 (Lakehouse v1)
Calculates an MD5 128-bit checksum for a string. The value is returned as a string of 32 hexadecimal digits or NULL if the argument was NULL.
Analyze Syntax
Section titled “Analyze Syntax”func.md5(<expr>)Analyze Examples
Section titled “Analyze Examples”func.md5('1234567890')
┌──────────────────────────────────────────┐│ func.md5('1234567890') │├──────────────────────────────────────────┤│ e807f1fcf82d132f9bb018ca6738a19f │└──────────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”MD5(<expr>)SQL Examples
Section titled “SQL Examples”SELECT MD5('1234567890');
┌──────────────────────────────────┐│ md5('1234567890') │├──────────────────────────────────┤│ e807f1fcf82d132f9bb018ca6738a19f │└──────────────────────────────────┘