The user specified as a definer ('root'@'%') does not exist 解决方法
当我们进行数据库迁移的时候有时候会遇到
The user specified as a definer ('root'@'%') does not exist的问题,
解决方法如下,如下命令
第一步
grant all privileges on *.* to root@"%" identified by "Passwd";
第二步
flush privileges;
然后在连接,问题解决