码迷,mamicode.com
首页 > 其他好文 > 详细

DCL

时间:2017-12-12 20:45:55      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:grant   creat   cal   pass   删除   class   ant   主机   数据   

管理系统中的对象权限时使用

①创建用户

      create user ‘username‘@‘localhost‘ identified by ‘password‘; 

      create user ‘my_user‘@‘localhost‘ identified by ‘cqq‘;

      本地用户:‘localhost’, 任意主机:‘%’,远程:‘ip‘

②授权

      grant all on db.* to ‘my_user‘ @‘localhost‘;//将对db数据库的所有操作权限授予my_user用户,my_user用户的主机是localhost

      grant all on *.* to my_user@‘localhost‘;//将root用户下对所有数据库的所有操作权限全部授予my_user 用户

      select* from mysql.user;//查看所有的用户信息(user,host等)

③修改密码

      set password for my_user@‘localhost‘=‘12345‘

④回收权限

      revoke  all on db.* from ‘my_user‘ @‘localhost‘;

⑤删除用户

      drop user ‘my_user‘ @‘localhost‘;

DCL

标签:grant   creat   cal   pass   删除   class   ant   主机   数据   

原文地址:http://www.cnblogs.com/-cqq/p/8028748.html

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