C:\Users\XXX>MysqL -u root -p
输入密码后登录,接下来操作如下:
1、创建数据库
语法:create schema [数据库名称] default character set utf8 collate utf8_general_ci;
采用create schema和create database创建数据库的效果一样。
示例:create schema spring_boot_demo default character set utf8 collate utf8_general_ci;
2、创建用户
语法:create user '[用户名称]'@'%' identified by '[用户密码]';
密码8位以上,包括:大写字母、小写字母、数字、特殊字符
%:匹配所有主机,该地方还可以设置成‘localhost’,代表只能本地访问,例如root账户默认为‘localhost‘
示例:create user 'szh'@'localhost' identified by '123456';
grant select,insert,update,delete,create on [数据库名称].* to [用户名称]@'%';
*代表整个数据库
示例:grant select,create on spring_boot_demo.* to szh@'localhost';
4、立即启用修改
flush privileges ;
revoke all on *.* from szh;
delete from MysqL.user where user='szh';
drop database [schema名称|数据库名称];
PS : 在操作过程中如果遇到错误
"The MysqL server is running with the --skip-grant-tables option so it cannot execute this statement"
则先进行一下刷新操作:
MysqL> flush privileges; --这样就可以接着操作了
---------------------
作者:忧国一小民
来源:CSDN
原文:https://blog.csdn.net/sunzhenhua0608/article/details/80382960
版权声明:本文为博主原创文章,转载请附上博文链接!