2014-11-20 2 views
0

Windows의 MySQL 명령 줄을 사용하여 루트로 로그인했습니다. 이것은 Microsoft Web Platform Installer와 함께 설치되었습니다. 버전MySql이 사용자를 생성 할 수 없습니다.

Server version: 5.1.72-community MySQL Community Server (GPL) 

내가

create user 'someuser'@'localhost' indentified by password 'somepassword'; 

또는

create user 'someuser'@'localhost' indentified by 'somepassword'; 

내가 오타가

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 'inden 
tified by 'somepassword'' at line 1 
+0

신중하게 오류 문을 읽고 해결할 수 있습니다. – Rahul

답변

2

이 오류를 얻을이 문을 사용하여 새 사용자를 만들 수 없다 : indentified은이어야합니다.

관련 문제