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

mysql添加用户并赋予权限命令

时间:2017-06-28 17:09:02      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:sql   oca   去掉   pre   数据库   delete   style   test   let   

添加用户:

create user gouge@localhost identified by gouge;

赋予权限:

给gouge 用户赋予所有test开头的数据库权限 (test% 代表已test开头的数据库,如果指定单个数据库去掉%即可)

1 grant select,insert,update,delete,create,drop,alter on `test%`.* to gouge@% identified by gouge;
2 FLUSH PRIVILEGES;

添加最高权限

grant ALL PRIVILEGES on `test%`.* to gouge@% identified by gouge;
FLUSH PRIVILEGES;

 

mysql添加用户并赋予权限命令

标签:sql   oca   去掉   pre   数据库   delete   style   test   let   

原文地址:http://www.cnblogs.com/gouge/p/7090291.html

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