码迷,mamicode.com
首页 > 数据库 > 详细

mysql中all privileges包含哪些权限

时间:2016-08-20 11:37:38      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

mysql> grant all privileges on test.* to ‘ybb‘@‘%‘ identified by ‘ybb‘;
Query OK, 0 rows affected (0.07 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> select host,user,password from mysql.user where user=‘ybb‘ and host=‘%‘;
+-----------+---------+-------------------------------------------+
| host      | user    | password                                  |
+-----------+---------+-------------------------------------------+
| %         | ybb      | *C85EE1EAA8E69C43CE790C4CFFCF1ED2F88039EB |
+-----------+---------+-------------------------------------------+
1 rows in set (0.00 sec)

mysql> show grants for ybb;
+---------------------------------------------------------------------------------------------------+
| Grants for ybb@%                                                                                   |
+---------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO ‘ybb‘@‘%‘ IDENTIFIED BY PASSWORD ‘*C85EE1EAA8E69C43CE790C4CFFCF1ED2F88039EB‘ |
| GRANT ALL PRIVILEGES ON `test`.* TO ‘ybb‘@‘%‘                                                      |
+---------------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

mysql> revoke insert on test.* from ybb@‘%‘;
Query OK, 0 rows affected (0.00 sec)

mysql> show grants for ybb;
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Grants for ybb@%                                                                                                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO ‘ybb‘@‘%‘ IDENTIFIED BY PASSWORD ‘*C85EE1EAA8E69C43CE790C4CFFCF1ED2F88039EB‘                                                                                                                  |
| GRANT SELECT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER ON `test`.* TO ‘ybb‘@‘%‘ |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

mysql>

  

从上可以看出all privileges包含以下权限:

 select,
 insert,
 update,
 delete,
 create,
 drop,
 references,
 index,
 alter,
 create temporary tables,
 lock tables,
 execute,
 create view,
 show view,
 create routine,
 alter routine,
 event,
 trigger

  

mysql中all privileges包含哪些权限

标签:

原文地址:http://www.cnblogs.com/abclife/p/5789808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!