La table TABLE_PRIVILEGES
affiche les
informations sur les droits des tables. Ces informations
proviennent de mysql.tables_priv
.
Nom standard | Nom SHOW |
Remarques |
GRANTOR |
omis | |
GRANTEE |
i.e. 'utilisateur'@'hote' | |
TABLE_CATALOG |
NULL |
|
TABLE_SCHEMA |
||
TABLE_NAME |
||
PRIVILEGE_TYPE |
||
IS_GRANTABLE |
||
WITH_HIERARCHY |
omit |
Les requêtes suivantes ne sont pas équivalentes :
SELECT ... FROM INFORMATION_SCHEMA.TABLE_PRIVILEGES SHOW GRANTS ...
PRIVILEGE_TYPE
peut contenir l'une des
valeurs suivantes : SELECT
,
INSERT
, UPDATE
,
REFERENCES
, ALTER
,
INDEX
, DROP
et
CREATE VIEW
.
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.