相關推薦:《Navicat for mysql使用圖文教學》
連接MySQL時出現1449例外
#mysql 1449 : The user specified as a definer ('root'@'%') does not exist
權限問題,授權給root 所有sql 權限;
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中文網其他相關文章!