How do I create a user that views only the views
of my database in MySQL?
I'm using the following settings:
Ubuntu Server 14.04.5 LTS
MySQL: 5.5.55
Apache: 2.4.7
phpMyAdmin: 4.0.10
How do I create a user that views only the views
of my database in MySQL?
I'm using the following settings:
Ubuntu Server 14.04.5 LTS
MySQL: 5.5.55
Apache: 2.4.7
phpMyAdmin: 4.0.10
Hello,
I believe that if you use the following structure, you will grant the permissions only the desired view
GRANT priv [(colunas)] [, priv [(colunas)]] ...
ON {*.* | db.* | db.sua_view}
TO usuario [IDENTIFIED BY 'senha']
[, usuario [IDENTIFIED BY 'senha']] ...
[WITH [GRANT OPTION |
Check out this link: User Management and Access Control