当前位置 : 主页 > 编程语言 > java >

MySQL - “Unknown Column ‘Password‘ In Field List”

来源:互联网 收集:自由互联 发布时间:2022-09-29
错误的原因是 5.7版本下的mysql数据库下已经没有password这个字段了,password字段改成了authentication_string 修改密码时需将​​​password​​​改成​​authentication_string​​ 解决方案 执行命


错误的原因是 5.7版本下的mysql数据库下已经没有password这个字段了,password字段改成了authentication_string
修改密码时需将​​​password​​​改成​​authentication_string​​

MySQL - “Unknown Column ‘Password‘ In Field List”_java

解决方案

执行命令修改密码

update mysql.user set authentication_string=password('12345678') where user='**';

 使设置立即生效

mysql> flush privileges;

登录验证

mysql -u root -p
> 输入密码 (12345678)
上一篇:递归最通俗的理解方法 利用递归算阶乘
下一篇:没有了
网友评论