概述
在mysql 8.0中使用mysql5.7的语法对mysql进行远程登录授权时会报语法错误
正确的姿势是:
CREATE USER 'root'@'%' IDENTIFIED BY '****密码****';
GRANT ALL ON *.* TO 'root'@'%';
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '****密码****';
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select host, user, authentication_string, plugin from user;
最后
以上就是失眠雨为你收集整理的Mysql 8.0 ERROR 1064 (42000)的全部内容,希望文章能够帮你解决Mysql 8.0 ERROR 1064 (42000)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复