3 回答

梵蒂岡之花
TA貢獻(xiàn)1900條經(jīng)驗(yàn) 獲得超5個(gè)贊
首先連接到MYSQL數(shù)據(jù)庫,然后:
>use mysql;
>select user,password from user where user in
(select table_schema from information_schema.table where table_name=
'admin')
;
當(dāng)然得到的PASSWORD是加密過的。
可以通過語句:
> update user set password=PASSWORD('newpassword') where user in
(select table_schema from information_schema.table where table_name=
'admin')
;
將密碼修改為你想要的密碼。(注:有些操作需要有足夠的權(quán)限。)
添加回答
舉報(bào)
0/150
提交
取消