My database have some tables such as:
Table A
Table B
Table C
I'm using user monitoring with read-only permission.
SELECT grantee, privilege_type
FROM information_schema.role_table_grants
WHERE table_name= 'Table A'
I want to set monitoring user with insert, update, delete, truncate, alter table, trigger permission for only table Table A. The another table don't affect. How to implement this?
