码迷,mamicode.com
首页 > 数据库 > 详细

mysql5.7创建用户 分配权限

时间:2020-04-07 13:04:39      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:exe   tables   ror   bsp   操作   statement   mysq   can   stat   

创建用户(%表示随处可登录,localhost表示只能本地登录

create user ‘username‘@‘%‘ identified by ‘password‘;

 

分配权限

grant all privileges on tableName.* to ‘username‘@‘%‘;

 

刷新权限

flush privileges;

 

如果报错ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

先执行flush privileges;再进行操作

mysql5.7创建用户 分配权限

标签:exe   tables   ror   bsp   操作   statement   mysq   can   stat   

原文地址:https://www.cnblogs.com/uzxin/p/12652363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!