命令行下创建MySQL数据库与创建用户以及授权

先以root用户登录MysqL

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';

3、用户授权数据库

grant select,insert,update,delete,create on [数据库名称].* to [用户名称]@'%';

  *代表整个数据库

示例:grant select,create on spring_boot_demo.* to szh@'localhost';

4、立即启用修改

flush  privileges ;

 

5、取消用户szh所有数据库(表)的所有权限

revoke all on *.* from szh;

6、删除用户szh

delete from MysqL.user where user='szh';

7、删除数据库

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
版权声明:本文为博主原创文章,转载请附上博文链接

相关文章

(1)when you ping a computer from itsafe,the ping command should return the local IP address. (...
1、点击win菜单,点击设置图标 2、选择系统选项 3、选择应用与程序选项 4、拉到最下方,选择程序与功能...
目前一直直接往Windows 2008 R2 Server中复制文件(暂时还没有搭建ftp服务),突然不能复制了,于是百度...
windows下使用vscode配合xebug调试php脚本 要下载有php_xebug.dll扩展的版本,最新版可能没有这个扩展,p...
在控制面板的程序与功能里启用和关闭windows功能打开,适用于linux的windows子系统
效果演示 推荐一个非常牛的文档网站生成器:docsify 我通过这个工具,成功将码云上的个人学习笔记发布到...