建立新用户
格式:grant all privileges on 数据库.* to 用户名@登录主机 identified by "密码";
例如:增加一个用户test密码为1234,让他只可以在localhost上登录,并可以对数据库discuz进行所有的操作(localhost指本地主机,即MYSQL数据库所在的那台主机),
在MYSQL的提示符下:mysql> 录入grant all privileges on discuz.* to test@localhost identified by "1234";
grant all privileges on discuz.* to bbs@localhost identified by "xiaoye";
------------
怎么别人说这个给打权限是给mysql所有的操作权限呢?应该不是吧。
他上面说明是说给当前库所有权限的呀?