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

数据库的权限

时间:2018-05-08 22:12:22      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:with   SQ   revoke   user   mysql   ges   修改   用户   mys   

mysql 数据的权限实质都是在 user 表里控制的

1、grant

grant all on *.* to ‘ads‘@‘localhost‘ identified by ‘123456‘ with grant oprion;
# all:所有的权限
# *.*:所有数据库下面的所有表
# ‘ads‘:用户
# ‘localhost‘:用户 ip
# ‘123456‘:密码
# with grant oprion:有执行grant 语句的权限


2、修改 user 表的数据

flush privileges; #刷新权限


3、取消权限 --- revoke

revoke all on *.* from ads@localhost;

数据库的权限

标签:with   SQ   revoke   user   mysql   ges   修改   用户   mys   

原文地址:https://www.cnblogs.com/lynn-chen/p/9010822.html

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