如何在MySQL DB中为多个表授予对用户的访问权限?
作者:互联网
我有一个名为“greats”的mysql db,有四个表,如下所示
+---------------------+
| Tables_in_greatstat |
+---------------------+
| log |
| sitedet1 |
| siteindex |
| user |
| whois1 |
+---------------------+
在这里,我决定创建一个mysql用户“test”,我想只为db“greatstat”的特定表提供访问权限.
那么,我可以知道如何为MYSQL中的用户授予特定的表perm吗?
解决方法:
首先创建用户
GRANT USAGE ON *.* TO test@'localhost' IDENTIFIED BY 'whateverpassword';
仅授予对greatstat数据库中siteindex表的SELECT权限
GRANT SELECT ON greatstat.siteindex TO test@'localhost';
仅授予对greatstat数据库中whois1表的SELECT权限
GRANT SELECT ON greatstat.whois1 TO test@'localhost';
授予greatstat数据库中每个表的所有权限
GRANT ALL PRIVILEGES ON greatstat.* TO test@'localhost';
请阅读MySQL Documentation on the GRANT command.
标签:linux,mysql,mysql-5-5,mysql-5 来源: https://codeday.me/bug/20190806/1594214.html