算是 ...
查詢所有用戶
mysql> select host, user, password from mysql.user; -- 5.7版本之前的 mysql> select host, user, authentication_string from mysql.user; -- 5.7版本之後的,包括5.7 mysql> select distinct concat('User: ''',user,'''@''',host,''';') as query from mysql.user;
查詢用戶許可權:all表示所有許可權,select表示只查許可權,update表示只改許可權,delete表示只刪許可權等。
mysql> show grants for "user"@"host"; mysql> show grants for "root"@"localhost"; mysql> select * from mysql.user where user='root'\G;
添加授權用戶(新創建的用戶,預設情況下是沒有任何許可權的):使用root用戶登錄資料庫