관련 권장 사항: "Navicat for mysql 그래픽 튜토리얼 "
MySQL 1449에 연결 예외 발생
mysql 1449 : The user specified as a definer ('root'@'%') does not exist
권한 문제, 모든 SQL 권한을 루트에 부여
mysql> grant all privileges on *.* to root@"%" identified by "."; SQLException: The user specified as a definer ('ebook'@'%') does not exist:
Solution:
#🎜🎜 #
grant all privileges on *.* to ebook@"%" identified by "."; Query OK, 0 rows affected (0.00 sec)
위 내용은 navicat에서 사용자 삭제 시 1449 오류를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!