1、创建新数据库
create schema [数据库名称] default character set utf8 collate utf8_general_ci;
采用create schema和create database创建数据库的效果一样。
2、创建新用户
create user '[用户名称]'@'%' identified by '[用户密码]';
密码建议8位数以上,包括:大写字母、小写字母、数字、特殊字符
%:匹配所有主机,该地方还可以设置成‘localhost’,代表只能本地访问,例如root账户默认为‘localhost‘
3、用户授权数据库(代表整个数据库)
3.1只授权对数据表的操作
grant select,insert,update,delete,create on [数据库名称]. to [用户名称];
3.2授权对整个新数据库的全部权限的操作
grant all privileges on [数据库名称] to [用户名称]@'%' identified by '[用户密码]';
4、重新加载权限表; 更新权限,启动上述修改
flush privileges;
5、取消用户所有数据库(表)的所有权限
revoke all on . from [用户名称];
6、删除新用户
delete from mysql.user where user='[用户名称]';
7、--删除数据库
drop database [schema名称|数据库名称];
网友评论