MD5SUM

description

计算 多个字符串 MD5 128-bit

Syntax

MD5SUM(str[,str])

example

  1. MySQL > select md5("abcd");
  2. +----------------------------------+
  3. | md5('abcd') |
  4. +----------------------------------+
  5. | e2fc714c4727ee9395f324cd2e7f331f |
  6. +----------------------------------+
  7. 1 row in set (0.011 sec)
  8. MySQL > select md5sum("ab","cd");
  9. +----------------------------------+
  10. | md5sum('ab', 'cd') |
  11. +----------------------------------+
  12. | e2fc714c4727ee9395f324cd2e7f331f |
  13. +----------------------------------+
  14. 1 row in set (0.008 sec)

keywords

  1. MD5SUM