grant all privileges on *.* to root@"%" identified by ".";报错问题

MySQL 8.0已经不支持下面这种命令写法
grant all privileges on *.* to root@"%" identified by ".";

正确的写法是
grant all privileges on *.* to 'root'@'%' ;

猜你喜欢

转载自www.cnblogs.com/Loners/p/12348366.html