时间:2021-07-01 10:21:17 帮助过:28人阅读
grant 权限列表 on 数据库 to ‘账户‘@‘访问主机‘ identified by ‘密码‘;
flush privileges # 刷新权限
# 常用权限主要包括:create、alter、drop、insert、update、delete、select
# 如果分配所有权限,可以使用all privileges
# 描述访问主机时,localhost表示只能在本机访问数据库, %表示可以通过任何ip访问数据库
show grants for 用户名@主机;
grant 权限名称 on 数据库 to 用户@主机 with grant option;
# 示例:grant select,insert on db_jingdong.* to chichung@localhost with grant option;
use mysql;
update user set authentication_string=password(‘新密码‘) where user=‘用户名‘;
drop user 用户名@主机名;
revoke all on 数据库名.表名 from 用户;
MYSQL用户管理
标签:mysql用户管理 use for str 查看 password string 通过 word