I need some help regarding mysql
Hi guys,
I need to grant only select option to some selected user for a particular database,please anyone provide me mysql code to do this
Hi guys,
I need to grant only select option to some selected user for a particular database,please anyone provide me mysql code to do this
Â
The following Queries are for MySQL Database.
Creating a User
CREATE USER 'usr'@'localhost' IDENTIFIED BY 'pass';
Granting all previlleges to 'usr' on every thing in database 'dbase1'.
GRANT ALL ON dbase1.* TO 'usr'@'localhost';
Granting SELECT option on table 'mytable' in database dbase2 to user 'usr'
GRANT SELECT ON dbase2.mytable TO 'usr'@'localhost';
In order to set permissions for multiple users, you need to specify all of them changing the usernames in the lase query.
Â
However If you Make any mistake, you can alter by using the REVOKE command by typing
REVOKE ALL on < username >;
Granting DBA to any user gives him almost all permissions and can lead to unsecured data.
thanks.