使用MYSQL QUERY browser时出现error1251的解决方案 发表于 2020-07-15 更新于 2022-01-15 分类于 Linux Disqus: 本文字数: 281 阅读时长 ≈ 1 分钟 出现1251一般是密码问题 首先使用cmd 输入 1mysql -u root -p 登录后输入 12345mysql> alter user root@localhost identified by 'newpassword' password expire never;mysql> alter user root@localhost identified with mysql_native_password by 'newpassword';mysql> flush privileges; # 刷新权限 newpassword是新密码 之后就可以正常链接了