本文共 576 字,大约阅读时间需要 1 分钟。
除grant option之外的所有权限
允许使用alter table
允许使用create table、create datable
用户管理权限
允许使用delete
允许使用drop table、drop database
允许使用insert
从主服务器读取二进制日志文件
允许使用select,默认新建用户拥有对test、information_schema库select权限
允许使用update
1、授权:grant(权限列表) on 库名.表名 to 用户名@'登录主机' [identified by '密码'];
//给与feiyu用户在所有网段create(创建)所有库和所有表的权限grant create on . to 'feiyu'@'%';2、撤销授权:revoke(撤回) 权限列表 on 数据库.表名 from 用户名@'登录主机';
//移除用户feiyu对所有库和所有表的create权限转载于:https://blog.51cto.com/13043516/2117991