mysql用户和权限
1、创建用户
格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"
mysql>grant all on *.* to test@"%" identified by "123456";
mysql>flush privileges;
2、修改密码
mysql>update mysql.user set password=password(‘123456‘) where User=‘test‘ and Host=‘localhost‘;
mysql>flush privileges;
3、删除用户
mysql>delete from user where user=‘test1‘ and host=‘localhost‘;
mysql>flush privileges;
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。