Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 457 Bytes

see_grants_for_specific_user.md

File metadata and controls

23 lines (19 loc) · 457 Bytes

See grants for specific user

If you want to see what grants a given user has been granted.

SELECT
    owner,
    table_name,
    select_priv,
    insert_priv,
    delete_priv,
    update_priv,
    references_priv,
    alter_priv,
    index_priv
FROM table_privileges
WHERE grantee = <theUser>
ORDER BY owner, table_name;

References