The user specified as a definer (”@’%’) does not exist解决办法 引起该问题的原因应该是调用存储过程或者查询视图的时候没有权限导致的; 执行以下sql: 首先执行grant all privileges on . to root@"%" identified by “.”; 然后刷新权限flush privileges;就可以了。