1.查看权限
语法:show grants for 'username'@'hostname'
例如:查看root用户的权限
show grants for 'root'@'localhost'
2.授予权限
语法:grant 权限类型1,权限类型1.... on 数据库名.表
to 'username'@'hostname' [,'username'@'hostname']
[with grant option]
所有库中所有表 *.*
例如:新创建test04 用户 密码test04
create user 'test04'@'localhost' identified by 'test04'
授予 所有库下所有表的查询 删除权限
grant select ,delete on *.* to 'test04'@'localhost' with grant option
查看test04的权限
show grants for 'test04'@'localhost'
3.收回权限
revoke 权限类型1,权限类型2.... on 库名.表名
from 'username'@hostname'' [,'username'@hostname'']...
例如:收回test04的delete权限
revoke delete on *.* from 'test04'@'localhost'