mysql 1449 : The user specified as a definer (\'root\'@\'%\') does not exist 解决方法

前端之家收集整理的这篇文章主要介绍了mysql 1449 : The user specified as a definer (\'root\'@\'%\') does not exist 解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1、给root用户授予所有权限
MysqL> grant all privileges on *.* to root@"%" identified by "密码";

2、刷新
MysqL> flush privileges;

猜你在找的MySQL相关文章