#创建用户
create user '用户名'@'允许登录的地址' identified by ' 密码
';
#删除用户:
drop user '用户名'@'允许登录的地址或服务器名';
#修改当前用户密码
set password = password ('密码');
#修改其他用户密码
set password for '用户名'@'允许登陆地址' = password ('
密码 ');
#grant 权限列表 on 某库.某个对象 to '用户名'@'允许登录的位置' 【identified
by '密码'】;
# 【identified by '密码'】;可省略,不省略的时,授权不存在的用户会创建用户并授权
grant all on mydb.* to 'user1'@'localhost';
grant all on *.* to 'user1'@'localhost';
#授予权限不会覆盖之前的权限,而是以叠加的方式进行
grant select,insert on *.* to 'user1'@'localhost';
# 取消权限
#revoke 权限列表 on 某库.某个对象 from '用户名'@'允许登录的位置 |
#创建一个用户 用户名:
user1 密码 123 允许所有地址登录
create user 'user1'@'%' identified by '123';
#给user1授予所有权限
grant all on *.* to 'user1'@'%';
#删除user1
DROP user 'user1'@'%';
#创建user2 只对 db1数据库有权限
create USER 'user2'@'localhost' identified by
'123';
grant all on db1.* to 'user2'@'localhost' ;
#取消user2 对 tab1表的创建表权限
REVOKE CREATE on db1.* from 'user2'@'localhost'
;
#这句不行 因为之前是grant all on db1.*
REVOKE CREATE on db1.tab1 from 'user2'@'localhost'
; |