0
오류를 만들 :떨어 테이블과 사용자의 MySQL
SQL query:
DROP user IF EXISTS 's01'@'%';
MySQL said: Documentation
#1064 - 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 'if exists 's01'@'%'' at line 1
오류를 포기 테이블없이 : 내 코드의 일부
SQL query:
/*Students*/ CREATE User 's01'@'%' IDENTIFIED BY 'pw1';
MySQL said: Documentation
#1396 - Operation CREATE USER failed for 's01'@'%'
예 :
Drop user if exists 's01'@'%';
flush privileges;
/*Students*/
Create User 's01'@'%' Identified by 'pw1';
내가 정확히 모른다 뭐가 잘못 되었 니. 나는 그것을 보았고 플러시 특권을 추가한다고 말했지만, 여전히 같은 두 가지 오류가 발생합니다.
권한이있는 문제 일 수 있습니까? - https://dev.mysql.com/doc/refman/5.7/en/drop-user.html –