Home > other >  How to verify permission to update a specific column was granted?
How to verify permission to update a specific column was granted?

Time:11-27

I have the executed following change:

grant update(speaker) on api.teams to anon;

How can I use a select statement to verify this change was made?

I can't see the entry in information_schema.table_privileges.

CodePudding user response:

The appropriate view is informstion_schema.column_privileges.

  • Related