基于mysql数据库的密码问题详解
基于mysql数据库的密码问题详解
发布时间:2016-12-29 来源:查字典编辑
摘要:今儿在做实验用到mysql数据库时,用户密码忘记了,让我也是找了半天:现在给大家介绍下我自己的方法:用到了mysql自身的函数来测试的。复制...

今儿在做实验用到mysql数据库时,用户密码忘记了,让我也是找了半天:现在给大家介绍下我自己的方法:用到了mysql自身的函数来测试的。

复制代码 代码如下:

mysql> select user,password,host from user;

+------+------------------+-----------+

| user | password | host |

+------+------------------+-----------+

| root | 773359240eb9a1d9 | localhost |

| root | | fsailing1 |

| root | | 127.0.0.1 |

| root | 309e1248634a4f61 | % |

+------+------------------+-----------+

4 rows in set (0.00 sec)

mysql> password("root");

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'password("root")' at line 1

mysql> select password("root");

+------------------+

| password("root") |

+------------------+

| 67457e226a1a15bd |

+------------------+

1 row in set (0.00 sec)

mysql> select password("chen");

+------------------+

| password("chen") |

+------------------+

| 309e1248634a4f61 |

+------------------+

1 row in set (0.00 sec)

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新mysql数据库学习
热门mysql数据库学习
编程开发子分类