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

 

用户不存在。用可视化工具新建一个。

 

权限不够 ,运行下面命令:

如:我的错误:

The user specified as a definer ('movitity'@'%') does not exist

movitity权限不够。

运行结果如下:

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)

 

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

 

相关文章:

  • 2022-12-23
  • 2021-11-02
猜你喜欢
  • 2022-12-23
  • 2021-08-11
  • 2021-12-20
  • 2021-06-11
  • 2022-12-23
  • 2022-12-23
  • 2021-06-09
相关资源
相似解决方案