翻译为:指定为定义者的用户(‘root’@’%’)不存在
说白了就是sql没有root的权限
授权一下就行了
grant all privileges on . to root@"%" identified by “.”;
SQL报错:The user specified as a definer ('root'@'%') does not exist
最新推荐文章于 2024-07-19 10:08:59 发布
翻译为:指定为定义者的用户(‘root’@’%’)不存在
说白了就是sql没有root的权限
授权一下就行了
grant all privileges on . to root@"%" identified by “.”;