两种可能:
1.用户权限不够
赋给用户所有权限试试
mysql> grant all privileges on *.* to [email protected]"%" identified by "."; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)
2.有可能这个视图或者函数的创建人不是当前的用户。一种场景是数据的导出sql,进行的数据库迁移
视图或者函数用当前的用户重建即可
mysql的The user specified as a definer (”@’%') does not exist 的解决办法
时间: 2024-11-10 01:41:09