首页 > 数据库技术 > 详细

mysql 修改用户密码

时间:2017-09-04 00:24:05      阅读:374      评论:0      收藏:0      [点我收藏+]

use mysql;
update user set password=‘123456‘ where user=‘root‘; //报unknown column password错误
update mysql.user set authentication_string=password(‘123456‘) where user=‘root‘;  //修改root用户密码,密码字段为authentication_string
FLUSH PRIVILEGES; //刷新缓存

mysql 修改用户密码

原文:http://www.cnblogs.com/sunflower627/p/7471850.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!