这篇文章将为大家详细讲解有关MySQL如何授权用户管理数据库,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
一、grant 普通 DBA 管理某个 MySQL 数据库的权限。
grant all privileges on dbname to dba@'localhost'
其中,关键字 “privileges” 可以省略。
二、grant 高级 DBA 管理 MySQL 中所有数据库的权限。
grant all on *.* to dba@'localhost'
三. grant 作用在表中的列上:
grant select(id, se, rank) on testdb.apache_log to dba@localhost;
四、查看 MySQL 用户权限
查看当前用户(自己)权限:
show grants;
查看其他 MySQL 用户权限:
show grants for dba@localhost;
五、撤销已经赋予给 MySQL 用户权限的权限。
revoke 跟 grant 的语法差不多,只需要把关键字 “to” 换成 “from” 即可:
grant all on *.* to dba@localhost;
revoke all on *.* from dba@localhost;
测试: 创建数据库用户 ,授权某个库权限
create user 'bj'@'%' identified by 'bj';
flush privileges;
grant SELECT ,INSERT,update ,delete,create ,drop on bjsjjh.* to 'bj'@'%' identified by 'bj' ;
flush privileges;
关于“MySQL如何授权用户管理数据库”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。