首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

MySQL用户操作命令_MySQL

2020-11-09 来源:花图问答

create user 'username'@'localhost' identified by 'password';--创建用户set password for 'username'@'localhost'=password('newpassword');--修改用户密码grant all on *.* to 'username'@'localhost';--授权revoke all on *.* to 'username'@'localhost';--撤销授权drop user 'username'@'localhost';--删除用户
显示全文