mysql修改密码
5.6版本
update mysql.user set password = password('123456') where user='root';
5.7版本
update user set authentication_string = password('123456') where user='root';
FLUSH PRIVILEGES;
5.6版本
update mysql.user set password = password('123456') where user='root';
5.7版本
update user set authentication_string = password('123456') where user='root';
FLUSH PRIVILEGES;