MD5()
MD5(string)This function uses a Message-Digest algorithm 5 (MD5) 128-bit checksum to
return a 32-character hash value of string
from the Request for Comments (RFC) 1321 standard. Here is an
example:
SELECT MD5('Test') AS 'MD5( ) Test';
+----------------------------------+
| MD5( ) Test |
+----------------------------------+
| 0cbc6611f5540bd0809a388dc95a615b |
+----------------------------------+