首页 > 代码库 > mysql增加用户

mysql增加用户

增加一个用户,密码为空,在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增加用户