1.管理用户
1.查询用户
use mysql ;
select * from user ;
2.创建用户
create user '用户名'@'主机名' identified by '密码' ;
例:
//创建用户itcast ,只能够在当前主机local host访问,密码123456
create user 'itcast'@'localhost' identified by '123456';
//创建用户itcasts ,可以在任意主机访问该数据库,密码123456
create user 'itcasts'@'%' identified by '123456';// %代表任意
3.修改用户密码
alter user '用户名'@'主机名' identified with mysql_native_password by '新密码' ;
例:
alter user 'itcast'@'local host' identified with mysql_native_password by '12345678' ;
4.删除用户
drop user '用户名'@'主机名 ;
例:
drop user 'itcast'@'local host' ;
注意:
- 主机名可以用%通配
- 这类SQL开发人员操作的比较少,主要是DBA(Database Administrator 数据库管理员)使用。
2.权限控制
MySQL中定义了很多种权限,但是常用的就以下几种:
|----------------------|------------|
| 权限 | 说明 |
| all , all privileges | 所有权限 |
| select | 查询数据 |
| insert | 插入数据 |
| update | 修改数据 |
| delete | 删除数据 |
| alert | 修改表 |
| drop | 删除数据库/表/视图 |
| create | 创建数据库/表 |
1.查询权限
show grants for '用户名 '@'主机名' ;
例:
show grants for 'itcast'@'local host';
2.授予权限
grant 权限列表 on 数据库名.表名 to '用户名'@'主机名' ;
例:
grant all on itcast.* to 'itcast'@'local host';
3.撤销权限
revoke 权限列表 on 数据库名.表名 from '用户名'@'主机名' ;
例:
revoke all on itcast.* from 'itcast'@'local host';
本期分享就到此结束啦,谢谢大家观看,我们下期再见!