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

错误原因:

这是权限问题,授权给root的所有的SQL语句

解决办法:

GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY ".";

FLUSH PRIVILEGES;

Guess you like

Origin blog.csdn.net/peter_qyq/article/details/72833519