创建一个数据库用户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‘;
时间: 2024-10-11 05:59:25
创建一个数据库用户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‘;