I have a MySQL user added to a database that I would like to prevent from viewing certain tables.
I can limit my privileges through MySQL by not allowing them to run statements such as DROP or ALTER. But is it possible to prevent some tables from being viewed in phpMyAdmin?
If you do not have the MySQL privilege that controls this (I would not have thought that it would be), does phpMyAdmin have a configuration that allows this?
I understand that one way to solve this problem is to move the tables to a new database, to which they are not added. This is not an option for my application.
source share