您好,欢迎访问一九零五行业门户网

mysql如何设置密码_MySQL

bitscn.com
有很多方法:1.用root 进入mysql后mysql>set password =password('你的密码');mysql>flush privileges;
2.使用grant语句 mysql>grant all on *.* to 'root'@'localhost' identified by '你的密码'with grant option ;mysql>flush privileges;
3.进入mysql库修改user表mysql>use mysql;mysql>update user set password=password('你的密码') where user='root'; mysql>flush privileges;
bitscn.com
其它类似信息

推荐信息