3 回答
梵蒂冈之花
TA贡献1900条经验 获得超5个赞
首先连接到MYSQL数据库,然后:
>use mysql;
>select user,password from user where user in
(select table_schema from information_schema.table where table_name=
'admin')
;
当然得到的PASSWORD是加密过的。
可以通过语句:
> update user set password=PASSWORD('newpassword') where user in
(select table_schema from information_schema.table where table_name=
'admin')
;
将密码修改为你想要的密码。(注:有些操作需要有足够的权限。)
添加回答
举报
0/150
提交
取消