-
添加用户
** create user 'robin'@'localhost' identified by 'robin';**
-
删除用户
drop user 'robin'@'localhosy';
-
授权权限
**grant all on 数据库名.表 to 'robin'@'localhosy'; **
grant后面是授权的权限,有select create insert into drop 等 ,如果要授予全部权限的话就用all。on后面是数据库或者数据库下的表。to后面是用户。如果在用户名的后面加上with grant option 表示这个用户也可以给其他用户授权。
- 回收权限
**revoke all on 数据库名.表 from 'robin'@'localhosy'; **
和授权的基本一样。
- 修改用户的密码
set passowrd for 'robin'@'localhosy' = password('newpassword');
也可以通过更新user表修改
- 刷新权限
flush privileges;