mysql 1449 : The user specified as a definer ('root'@'%') does not exist

mysql权限问题

权限问题,授权 给 root  所有sql 权限

解决办法:

运行下面两条sql命令即可

grant all privileges on *.* to root@"%" identified by ".";

flush privileges;

原文地址:https://www.cnblogs.com/feiwenstyle/p/10974162.html