创建视图报错:1449-the user specified as a definer(ywsd'0"%" does not exist

从一个数据库数据迁移到本地localhost

程序在调用到数据库的视图时报错,直接在数据库中打开视图时也报错,类似:

mysql 1449 : The user specified as a definer (‘root’@‘%’) does not exist

经查询是权限问题,解决办法:

运行sql:

1、grant all privileges on *.* to 'root'@'%' identified by ".";
 
2、flush privileges;

即可解决!

源地址的解释:

权限问题,授权 给 root 所有sql 权限

1、mysql> grant all privileges on *.* to root@"%" identified by ".";
 
2、Query OK, 0 rows affected (0.00 sec)
 
 
3、mysql> flush privileges;
 
4、Query OK, 0 rows affected (0.00 sec)
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐