DCL英文全称Data Control Language(数据控制语言),用来管理数据库用户、控制数据库的访问权限
DCL-管理用户
create user 'itcast'@'localhost' identified by '123456' ;-- 修改用户heima的密码为1234
alter user 'heima'@'%' identified with mysql_native_password by '1234';-- 删除用户
drop user 'itcast'@'localhost';
注意:主机名可以使用%通配
DCL-权限控制
-- 查询权限
show grants for 'itcast'@'%';-- 授权权限
grant all on itcast.* to 'heima'@'%';-- 撤销权限
revoke all on itcast.* from 'heima'@'%';