MD5SUM
descriptionβ
Calculates an MD5 128-bit checksum for the strings
Syntaxβ
MD5SUM( <str> [ , <str> ... ] )
Parametersβ
parameter | description |
---|---|
<str> | The MD5 value to be calculated |
Return Valueβ
Returns the MD5 value of multiple strings
Examplesβ
select md5("abcd"),md5sum("ab","cd");
+----------------------------------+----------------------------------+
| md5('abcd') | md5sum('ab', 'cd') |
+----------------------------------+----------------------------------+
| e2fc714c4727ee9395f324cd2e7f331f | e2fc714c4727ee9395f324cd2e7f331f |
+----------------------------------+----------------------------------+