Mysql5.7 有关于密码的错误(ERROR 1054 (42S22): ,ERROR 1820 (HY000):)

Thalia ·
更新时间:2024-11-13
· 963 次阅读

ERROR 1054 (42S22): Unknown column ‘password’ in ‘field list’

password 已经不适用了 将其改为更改语句替换为authentication_string

故更改密码的语句update mysql.user set authentication_string=password(‘root’) where user=‘root’ ;即可
在这里插入图片描述
密码形式必须包含大写,小写,数字,特殊符号。否则会有密码保护级别过低的错误

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

按照提示要求修改密码即可。
ALTER user ‘root’@‘localhost’ IDENTIFIED BY ‘Mbw123456.’;
在这里插入图片描述


作者:weixin_43818526



error hy Mysql

需要 登录 后方可回复, 如果你还没有账号请 注册新账号