til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

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