mysql修改密码

方法1: 用SET PASSWORD命令 

首先登录MySQL。 

格式:mysql> set password for 用户名@localhost = password('新密码'); 

方法2:用UPDATE直接编辑user表 

首先登录MySQL。 

mysql> use mysql; 

mysql> update user set authentication_string=password('123') where user='root' and host='localhost'; 

mysql> flush privileges; 

你可能感兴趣的:(mysql修改密码)