MySQL 5.7的语句
grant all on *.* to 'root'@'%'identified by '你的密码';
MySQL 8.0已经不再使用这种写法,这么写会报错。正确写法为:
1.先创建用户
CREATE USER 'root'@'%' IDENTIFIED BY '你的密码';
2.再给用户授权
grant all privileges on *.* to 'root'@'%' ;
MySQL 5.7的语句
grant all on *.* to 'root'@'%'identified by '你的密码';
MySQL 8.0已经不再使用这种写法,这么写会报错。正确写法为:
1.先创建用户
CREATE USER 'root'@'%' IDENTIFIED BY '你的密码';
2.再给用户授权
grant all privileges on *.* to 'root'@'%' ;