允许优化和修复的 MySQL 用户最小权限是什么?
select 和 insert 语句是允许优化和修复所需的最小 MySQL 用户权限。
可以使用以下语法向用户授予 insert 和 select 权限 −
grant insert,select on yourDatabaseName.* to 'yourUserName'@'localhost';
首先,提供了创建用户的查询 −
mysql> create user 'Emma'@'localhost' identified by 'Emma123'; Query OK, 0 rows affected (0.26 sec)
下面是向上述用户授予权限的查询 −
mysql> grant insert,select on web.* to 'Emma'@'localhost'; Query OK, 0 rows affected (0.21 sec)
以下是显示上述用户所有权限的查询 −
mysql> show grants for 'Emma'@'localhost';
这将生成以下输出 −
+-------------------------------------------------------+ | Grants for Emma@localhost | +-------------------------------------------------------+ | GRANT USAGE ON *.* TO `Emma`@`localhost` | | GRANT SELECT, INSERT ON `web`.* TO `Emma`@`localhost` | +-------------------------------------------------------+ 2 rows in set (0.00 sec)
广告