ユーザーを削除する

このステートメントは、TiDB システム データベースからユーザーを削除します。オプションのキーワードIF EXISTS使用すると、ユーザーが存在しない場合にエラーを黙らせることができます。このステートメントにはCREATE USER権限が必要です。

あらすじ

DropUserStmt
DROPUSERIFEXISTSUsernameList
Username
StringName@StringNamesingleAtIdentifierCURRENT_USEROptionalBraces

mysql> DROP USER idontexist; ERROR 1396 (HY000): Operation DROP USER failed for idontexist@% mysql> DROP USER IF EXISTS 'idontexist'; Query OK, 0 rows affected (0.01 sec) mysql> CREATE USER 'newuser' IDENTIFIED BY 'mypassword'; Query OK, 1 row affected (0.02 sec) mysql> GRANT ALL ON test.* TO 'newuser'; Query OK, 0 rows affected (0.03 sec) mysql> SHOW GRANTS FOR 'newuser'; +-------------------------------------------------+ | Grants for newuser@% | +-------------------------------------------------+ | GRANT USAGE ON *.* TO 'newuser'@'%' | | GRANT ALL PRIVILEGES ON test.* TO 'newuser'@'%' | +-------------------------------------------------+ 2 rows in set (0.00 sec) mysql> REVOKE ALL ON test.* FROM 'newuser'; Query OK, 0 rows affected (0.03 sec) mysql> SHOW GRANTS FOR 'newuser'; +-------------------------------------+ | Grants for newuser@% | +-------------------------------------+ | GRANT USAGE ON *.* TO 'newuser'@'%' | +-------------------------------------+ 1 row in set (0.00 sec) mysql> DROP USER 'newuser'; Query OK, 0 rows affected (0.14 sec) mysql> SHOW GRANTS FOR 'newuser'; ERROR 1141 (42000): There is no such grant defined for user 'newuser' on host '%'

MySQLの互換性

  • IF EXISTSを使用して存在しないユーザーを削除しても、TiDB で警告は生成されません。 問題 #10196

こちらも参照

このページは役に立ちましたか?

Playground
新規
登録なしで TiDB の機能をワンストップでインタラクティブに体験できます。
製品
TiDB Cloud
TiDB
価格
PoC お問い合わせ
エコシステム
TiKV
TiFlash
OSS Insight
© 2024 PingCAP. All Rights Reserved.
Privacy Policy.