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

mysql增加用户

时间:2014-12-03 00:16:07      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   sp   on   bs   as   nbsp   sql   

增加一个用户,密码为空,在test库任何对象上有增,删,改,查 权限

grant select,insert,update,delete on test.* to test1@localhost Identified by "";

 

连接:

mysql -u test1 -p;

password:

 

连接后只能use test;

 

增加一个用户,任何地方都可连接

grant select,insert,update,delete on test.* to test1@"%" Identified by "abc";

mysql增加用户

标签:style   color   os   sp   on   bs   as   nbsp   sql   

原文地址:http://www.cnblogs.com/actorai/p/4138932.html

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