mysql改密码

update user set authentication_string = password('new password'),password_expired = 'N', password_last_changed = now() where user = 'root';

原文地址:https://www.cnblogs.com/pythonClub/p/9879242.html