The user specified as a definer ('test'@'%') does not exist(用户指定为definer('test'@'%')不存在。)

意思是 test 这个用户的权限不足,最简单的解决办法就是赋予 test 用户所有权限:

1,grant all privileges on *.* to test@"%" identified by ".";


刷新权限表(不然要数据库重启才生效):

2,flush privileges;


3,end;

猜你喜欢

转载自blog.csdn.net/cling_snail/article/details/79347326
今日推荐