用户管理
use mysql;
查看
select host,user,password from user ;
创建
create user xuhong IDENTIFIED by 'xuhong';
修改
rename user feng to newuser;
删除
drop user newuser;
更改密码
set password for xuhong=password('xxxxxx');
update mysql.user set password=password('xxxx') where user='otheruser'
查看用户权限
show grants for xuhong;
赋予权限
grant all on xxx.* to xuhong;
回收权限
revoke all on xxx.* from xuhong; //如果权限不存在会报错
上面的命令也可使用多个权限同时赋予和回收,权限之间使用逗号分隔
grant select,update,delete ,insert on xxx.* to xuhong;
不要忘了更新命令:flush privileges ;
1.某张表中文添加失败提示乱码
alter table picture change modular_name modular_name varchar(45) character set utf8;
2.被授予访问权限的数据库或表
3.