Mysql 8.0.19 Macos 版本

冷暖自知 提交于 2020-03-03 19:04:43

错误:

mysql> set password for root@localhost=password('Mysql123456');
    -> ;
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 'password('Mysql123456');' at line 1

 

解决办法:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'Mysql123456';

刷新权限:

flush privileges;

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!