I am using MySQL 5.5.42 in Linux.
Could I grant SELECT to User1 on all tables in Database1 except Table1 ?
This is because Table1 contain sensitive data and User1 is not allow to read.
For other users, I can easily grant select on Database1.*
For User1, I have to grant select on Dataabse1.Table2, Table3, Table4, Table5, ...
This is quite a trouble, especially when adding new tables to Database1.
Is there any other quicker method ?
Many thanks.
Alvin SIU