13.7.5.27 SHOW PRIVILEGES 구문
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 구문" 을 참조하십시오.