The user specified as a definer ('root'@'%') does not exist 此种报错主要是针对访问视图文件引起的(没有权限)
解决方法:权限问题,授权 给 root  所有sql 权限。

通过navicat客户端执行以下两句命令

grant all privileges on *.* to [email protected]"%" identified by ".";
flush privileges;

The user specified as a definer ('root'@'%') does not exist解决办法

相关文章:

  • 2021-12-20
  • 2021-06-11
  • 2022-01-11
  • 2021-05-28
  • 2021-10-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-09
相关资源
相似解决方案