0
エラーCREATE:私は正確に知らないドロップテーブルとUSERのMySQL
Drop user if exists 's01'@'%';
flush privileges;
/*Students*/
Create User 's01'@'%' Identified by 'pw1';
:テーブルを落とすことなく、
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'@'%'
例なにが問題ですか。私はそれを見て、それはフラッシュ特権を追加すると述べたが、私はまだ同じ2つのエラーが発生します。
多分特権に問題がありますか? - https://dev.mysql.com/doc/refman/5.7/en/drop-user.html –