1.增删改查权限
select、insert、update、delete
2.创建、删除、修改数据库结构权限
create、alter、drop
3.外键权限
references
4.临时表权限
create temporary
5.索引权限
index
6.视图、查看视图源代码权限
create view、show view
7.函数、存储过程权限
create routine、execute、create routine、alter routine
grant execute on procedure/function dbname.pr/fn_name to 'dba'@'localhost'
授权命令grant语法
GRANT privileges(colimns)
ON what
TO user@host
IDENTIFIED BY 'password'
撤销权限
revoke跟grant的语法差不多,只需要把关键字 to 换成 from 即可