1.新建用户
insert into mysql.user(host,user,password) values("localhost","test",password("123456"));
//刷新系统权限表(以下每一步更改用户权限操作都需要刷新权限表来生效,下略)
flush privileges;
这样就创建了一个名为:test 密码为:123456 的用户。
2.为用户授权
//首先为用户创建一个数据库(shop)
create database shop;
//授权test用户拥有shop数据库的所有权限。
grant all privileges on shop.* to test@localhost identified by '123456';
//如果想指定部分权限给一用户,可以这样来写:
grant select,update on shop.* to test@localhost identified by '123456';
3.删除用户
delete from user where user="test" and host="localhost";
4.修改指定用户密码
update mysql.user set password=password('新密码') where User="test" and Host="localhost";
以上参考http://www.cnblogs.com/analyzer/articles/1045072.html