MySQL [Err]1449 : The user specified as a definer ('root'@'%') does not exist

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

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

 

原文地址:https://www.cnblogs.com/MakeView660/p/7000556.html