Syntax
MD5(str)
Purpose
MD5() returns the MD5 128-bit checksum of a string.
The return value is a string of 32 hexadecimal digits. If str is NULL, the return value is NULL.
Examples
obclient> SELECT MD5(1);
+----------------------------------+
| MD5(1) |
+----------------------------------+
| c4ca4238a0b923820dcc509a6f75849b |
+----------------------------------+
1 row in set