Navicat for mysql グラフィック チュートリアル 」
#MySQL への接続時に 1449 例外が発生する # mysql 1449 : The user specified as a definer ('root'@'%') does not exist
権限の問題。すべての SQL 権限を root に付与してください;
mysql> grant all privileges on *.* to root@"%" identified by "."; SQLException: The user specified as a definer ('ebook'@'%') does not exist:
grant all privileges on *.* to ebook@"%" identified by "."; Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) #Mysql
以上がnavicat でユーザーを削除する際の 1449 エラーを解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。