DCL
Data Control Language(数据控制语言),用来管理数据库用户、控制数据库的访问权限
一、管理用户
1、查询用户
USE mysql;
select *from user;
2、创建用户
create user '用户名'@'主机名' identified by '密码';
#创建用户
create user 'itcast'@'localhost:62149' identified by '123456';
3、修改用户名密码
alter user '用户名'@'主机名' identified with mysql_native_password by '新密码';
#创建用户,niup,可以在任意主机访问该数据库,密码123456 %代表任意
create user 'niup'@'%' identified by '123456';
#修改密码
alter user 'niup'@'%' identified with mysql_native_password by '12378';
4、删除用户
drop user '用户名'@'主机名';
二、权限控制
常用:
1、查询权限
show grants for '用户名'@'主机名';
#查询权限
show grants for'niup'@'%';
2、授予权限
grant 权限列表 on 数据库名.表名 to '用户名'@'主机名';
授予权限前:
#授予权限
grant all on itcast.* to'niup'@'%';
授予后:
3、撤销权限
revoke 权限列表 on 数据库名.表名 from '用户名'@'主机名';
#撤销权限 *表示所有
revoke all on itcast.* from 'niup'@'%';