Mysql修改数据库密码
#选择数据库
use mysql;
update user set authentication_string = PASSWORD('666') where user='root' and host ='xxx';
flush privileges;
本文来自博客园,作者:弩哥++,转载请注明原文链接:https://www.cnblogs.com/bangbangzoutianya/p/17122095.html
#选择数据库
use mysql;
update user set authentication_string = PASSWORD('666') where user='root' and host ='xxx';
flush privileges;
本文来自博客园,作者:弩哥++,转载请注明原文链接:https://www.cnblogs.com/bangbangzoutianya/p/17122095.html