mysql密码修改
2019-11-04 本文已影响0人
进击的PHPer
use mysql;
mysql -uroot -p
mysql> use mysql;
mysql> update user set password=password('root') where user='root';(mysql版本小于5.7)
mysql> update user set authentication_string=password("root") where user='root'; (mysql版本大于5.7)
mysql> flush privileges;