1、新增用户
(1)同时创建用户并授予权限
grant select on 数据库.表名 to 用户名@登录主机 identified by “密码"
增加一个用户test1密码为abc,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入MYSQL,然后键入以下命令:
grant select,insert,update,delete on *.* to test1@“%” Identified by “abc”;
增加一个用户test2密码为abc,让他只可以在localhost上登录,并可以对数据库mydb进行查询、插入、修改、删除的操作(localhost指本地主机,即MYSQL数据库所在的那台主机),这样用户即使用知道test2的密码,他也无法从internet上直接访问数
mysql> grant select,insert,update,delete on book.* to test2@localhost Identified by "abc";
如果你不想test2有密码,可以再打一个命令将密码消掉。
mysql> grant select,insert,update,delete on book.* to test2@localhost Identified by "";
(2)先创建用户再授予权限
create user username identified by 'password';
grant select,insert,update,delete on *.* to username@“%"
2、查询用户信息
select * from user \G; (包括用户名、密码、权限等)
\G表示把表中的一行以列显示
show grants;查看当前用户权限
show grants for username 查看任意用户权限
3、删除用户
Delete FROM user Where User='test' and Host='localhost';
drop user username;
4、修改用户密码
update mysql.user set password=password('新密码') where User="test" and Host="localhost";
set password for test =password("xxxxxx");
5、修改用户名
rename user feng to newuser;
update mysql.user set user='newuser' where user="test"
6、撤销权限
revoke select on dmc_db.* from zx_root;