mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解決方法

Magicam發表於2013-07-22

許可權問題,授權 給 root  所有sql 許可權

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


mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

相關文章