MYSQL 5.7 修改密碼

5.7版本的MYSQL的用戶表的密碼字段變了, 再也不是password字段 而是authentication_string字段。mysql

而後改密碼能夠用: update mysql.user set authentication_string=password('密碼') where user='root' and Host = 'localhost'; 或者 set password for 'root'@'localhost'=password('密碼');sql

相關文章
相關標籤/搜索