时间:2021-07-01 10:21:17 帮助过:2人阅读
创建一个数据库用户yxm,具有对sakila 数据库中所有表的SELECT/INSERT
grant select,insert on sakila.* to ‘yxm‘@‘localhost‘ identified by ‘123‘;
需要将yxm的权限变更,收回INSERT,只能对数据进行SELECT 操作:
revoke insert on sakila.* from ‘yxm‘@‘localhost‘;
mysql DCL(数据控制语句)
标签:ant nbsp 数据库 权限 oca grant 需要 mysq 控制