mysql改密码update命令报错?

大家好

mysql> update user set authentication_string=password('wang123') where User='wang';
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('wang') where User='alex'' at line 1
阅读 1.6k
2 个回答

新版本数据库需要使用下面的语句

# 兼容低版本的密码套件
ALTER USER 'wang'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';

# 或者
ALTER USER 'wang'@'localhost' IDENTIFIED BY '新密码';

wang 表示用户名
localhost 表示限定的请求主机,如果需要任意的,可以给 %

没有 password 这个函数.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题