mysql:The user specified as a definer ('xxx'@'%') does not exist

报错信息

mysql:The user specified as a definer ('xxx'@'%') does not exist 

问题分析

发生这种问题。大概率是用户不存在或者是权限不够

解决方案

mysql> grant all privileges on *.* to movitity@"%" identified by ".";
Query OK, 0 rows affected (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
posted @ 2024-05-06 11:09  King-DA  阅读(9)  评论(0)    收藏  举报