用命令创建各种权限的mysql帐号的方法如下(一定要先进入mysql,在mysql命令下执行以下的语句):
1. 创建一个用户,并拥有创建数据库,修改字段,删除表,对表增删改查的权限,和支持远程甚至任何地方登陆的权限(差不多相当于root帐号的权限):
grant select,insert,update,delete,create,drop,alter on *.* to reson1@"%" identified by "123456";
grant select,insert,update,delete,create,drop,alter on *.* to reson1@localhost identified by
"123456"; (一定要添加一条"%"和一条localhost,这样才能既支持本地访问,又支持远程任一ip访问。其中reson1为用户名,123456为密码)
2. 创建一个用户,并拥有对表增删改查的权限,只能在本地登陆:
grant select,insert,update,delete on *.* to reson2@localhost identified by "123456";
3. 创建一个用户,并拥有对表增删改查的权限,只能在192.168.1.100登陆,且只能操作dat1数据库的权限:
grant select,insert,update,delete on dat1.* to [email protected] identified by "123456";
掌握以上3个案例,就能创建各种想要的权限的mysql帐号了。