报错信息如下:

mysql小问题

 

主要是因为用root用户登录查询其他用户的表,结果这个用户不存在了,所以导致没有权限。临时解决办法,给root赋所有权限:

grant all privileges on *.* to [email protected]"%" identified by ".";

flush privileges;

相关文章:

  • 2021-12-23
  • 2021-09-11
  • 2021-12-17
  • 2021-08-19
  • 2021-11-02
  • 2022-01-13
  • 2022-02-25
  • 2022-12-23
猜你喜欢
  • 2021-10-30
  • 2021-08-08
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案