如何将一个存储的 MD5 字符串转换成 MySQL 中的一个十进制值?
你可以连用 conv() 函数和 cast() 函数将十六进制转换为十进制值。
注意 − MD5 采用十六进制
我们先创建一个表 −
mysql> create table DemoTable ( Password text ); Query OK, 0 rows affected (0.60 sec)
使用 insert 命令向表中插入一些记录 −
mysql> insert into DemoTable values("a5391e96f8d48a62e8c85381df108e98"); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values("ea7a32d2dc5bb793af262dcb6ea1a54d"); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
这将产生以下输出 −
+----------------------------------+ | Password | +----------------------------------+ | a5391e96f8d48a62e8c85381df108e98 | | ea7a32d2dc5bb793af262dcb6ea1a54d | +----------------------------------+ 2 rows in set (0.00 sec)
以下是将存储的 md5 字符串转换为 MySQL 中十进制值的查询 −
mysql> select cast(conv(substr(Password, 1, 16), 16, 10) as decimal(65))*18446744073709551616 + cast(conv(substr(Password, 17, 16), 16, 10) as decimal(65)) AS DecimalValue from DemoTable;
这将产生以下输出 −
+-----------------------------------------+ | DecimalValue | +-----------------------------------------+ | 219619200658969319114298942978912194200 | | 311673842057003455136843080376797734221 | +-----------------------------------------+ 2 rows in set (0.00 sec)
广告