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

MySQL创建用户并授权

时间:2018-08-12 23:34:37      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:sele   mysq   class   nts   grants   权限   localhost   生效   span   

mysql> grant all privileges on *.* to pzk@localhost identified by 123456;  # 创建用户并授权
mysql> flush privileges;                                                     # 授权完要刷新权限,否则不会马上生效 
mysql> select user,host from mysql.user;                                     # 查看用户
mysql> show grants for pzk@localhost; # 查看用户权限 mysql
> delete from mysql.user where user=pzk; # 删除用户及用户权限

 

 

 

 

    

MySQL创建用户并授权

标签:sele   mysq   class   nts   grants   权限   localhost   生效   span   

原文地址:https://www.cnblogs.com/pzk7788/p/9465371.html

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