我的mysql里面的一些数据库和一些表
基本语法
1.查询权限
show grants for '用户名'@'主机名';
例子1:查询权限
show grants for 'heima'@'%';
2.授予权限
grant 权限列表 on 数据库名.表名 to '用户名'@'主机名';
例子2: 授予权限
grant all on itcast.* to 'heima'@'%';
3.撤销权限
revoke 权限列表 on 数据库名.表名 from '用户名'@'主机名';
例子3:撤销权限
revoke all on itcast.* from 'heima'@'%';