MySQL 权限问题:The user specified as a definer ('root'@'%') does not exist的解决方法
时间:2020-01-10 14:09:11
收藏:0
阅读:189
The user specified as a definer (‘root‘@‘%‘) does not exist的主要是由于对视图的操作没有相关权限 解决方法:用Navicat Premium打开MySQL连上数据库后
权限问题,授权 给 root 所有sql 权限 mysql> grant all privileges on *.* to root@"%" identified by "."; 刷新权限 mysql> flush privileges;
原文:https://www.cnblogs.com/Loners/p/12175615.html
评论(0)