2024/09
-
[MySQL 오류] ERROR 1064 (42000)트러블 슈팅(Trouble Shooting) 2024. 9. 4. 02:26
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by 'root'' at line 1 grant all on DB명.* to root@localhost identified by 'root'; 입력하였으나 ERROR 1064 (42000) 오류가 발생했다. mySQL 8.0 버전 이상부터 계정 생성 + 사용자 권한 부여를 동시 진행이 불가능하다. mysql> create user 계정ID@'%' identified by '비밀번호';mysql> grant al..