欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL如何利用DCL管理用户和控制权限

程序员文章站 2022-10-29 12:53:56
dcl(data control language):数据控制语言,用来定义数据库的访问权限和安全级别,及创建用户。一、管理用户1、创建用户-- 创建用户create user '用户名'@'主机名'...

dcl(data control language):数据控制语言,用来定义数据库的访问权限和安全级别,及创建用户。

一、管理用户

1、创建用户

-- 创建用户
create user '用户名'@'主机名' identified by '密码';

create user 'summerday'@'localhost' identified by '123456';

ps:如果出现了[the mysql server is running with the --skip-grant-tables option so it cannot execute this statement]的错误,可以先执行flush privileges;语句。

2、修改用户

-- 修改密码
set password for '用户名'@'主机名' = password('新密码');

set password for 'summerday'@'localhost' = password('hyh123');

3、查询用户

-- 1. 切换到mysql数据库
use mysql;
-- 2. 查询user表
select * from user;

%通配符匹配所有。

4、删除用户

-- 删除用户
drop user '用户名'@'主机名';

drop user 'summerday'@'localhost';

二、权限管理

1、查询权限

-- 查询权限
show grants for '用户名'@'主机名';

show grants for 'summerday'@'localhost';

2、授予权限

-- 授予权限
grant 权限列表 on 数据库名.表名 to '用户名'@'主机名';

grant select on mydb2.account to 'summerday'@'localhost';

-- 授予所有权限
grant all on *.* to 'summerday'@'localhost';

3、撤销权限

-- 撤销权限
revoke 权限列表 on 数据库名.表名 from '用户名'@'主机名';

revoke select on mydb2.account to 'summerday'@'localhost';

-- 撤销所有权限
revoke all on *.* from 'summerday'@'localhost';

作者:天乔巴夏丶
出处:
本文已收录至gitee:https://gitee.com/tqbx/javablog
若有兴趣,可以来参观本人的个人小站:

以上就是mysql如何利用dcl管理用户和控制权限的详细内容,更多关于mysql 管理用户和控制权限的资料请关注其它相关文章!