>데이터 베이스 >MySQL 튜토리얼 >mysql数据库的密码问题_MySQL

mysql数据库的密码问题_MySQL

WBOY
WBOY원래의
2016-06-01 13:41:57994검색

bitsCN.com mysql数据库的密码问题 今儿在做实验用到mysql数据库时,用户密码忘记了,让我也是找了半天: 现在给大家介绍下我自己的方法:用到了mysql自身的函数来测试的。 [html]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)     作者 chen861201 bitsCN.com

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.