mysql 跑存储过程没有权限的问题
程序员文章站
2022-03-03 23:00:49
1.赋予权限 2.刷新权限 ......
1.赋予权限
grant all privileges on *.* to root@"%" identified by "root";
2.刷新权限
flush privileges;
grant all privileges on *.* to root@"%" identified by "root";
flush privileges;