Documentation Home

13.7.5.27 显示特权声明

SHOW PRIVILEGES

SHOW PRIVILEGES显示 MySQL 服务器支持的系统权限列表。确切的权限列表取决于您的服务器版本。

mysql> SHOW PRIVILEGES\G
*************************** 1. row ***************************
Privilege: Alter
  Context: Tables
  Comment: To alter the table
*************************** 2. row ***************************
Privilege: Alter routine
  Context: Functions,Procedures
  Comment: To alter or drop stored functions/procedures
*************************** 3. row ***************************
Privilege: Create
  Context: Databases,Tables,Indexes
  Comment: To create new databases and tables
*************************** 4. row ***************************
Privilege: Create routine
  Context: Databases
  Comment: To use CREATE FUNCTION/PROCEDURE
*************************** 5. row ***************************
Privilege: Create temporary tables
  Context: Databases
  Comment: To use CREATE TEMPORARY TABLE
...

属于特定用户的权限由 SHOW GRANTS语句显示。有关详细信息,请参阅 第 13.7.5.22 节,“SHOW GRANTS 语句”