首页 > 数据库技术 > 详细

mysql8.0授予用户访问权限

时间:2021-05-04 14:25:39      阅读:9      评论:0      收藏:0      [点我收藏+]

请注意版本为mysql8.0

创建用户

方式一

create user zephyr identified by ‘123123‘;

方式二

create user zephyr@localhost identified by ‘123123‘

用户信息可以在mysql.user表中查询,例如

select user, host
from mysql.user;

效果:

技术分享图片

注意:若不在创建用户时指定host,则默认host为%。

授予访问权限

授予zephyr访问数据库jdbc_learning的权限

grant select, insert, delete, update on jdbc_learning.* to zephyr@localhost;

注意:若host为%,则上述语句可改写为:

grant select, insert, delete, update on jdbc_learning.* to zephyr;

省略了@localhost,因为%指代所有host

注意:mysql8.0不支持以下写法:

grant select,insert,delete,update on jdbc_learning.* to zephyr@localhost identified by ‘123123‘;

会报错:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘identified by ‘123123‘‘ at line 1

mysql8.0授予用户访问权限

原文:https://www.cnblogs.com/getheading/p/14728977.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!