当前位置: 代码迷 >> 综合 >> mysql报错execute command denied to user 'root'@'%' for routine
  详细解决方案

mysql报错execute command denied to user 'root'@'%' for routine

热度:7   发布时间:2023-12-14 18:32:04.0

mysql报错execute command denied to user 'root'@'%'  for routine


执行以下sql语句即可

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' ;
FLUSH PRIVILEGES;

  相关解决方案