欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

更新用户密码

程序员文章站 2024-01-30 16:39:58
...

更新用户登录密码:

update  mysql.user  set  password=password('root')  where  user='root'  and  host='localhost';flush  privileges;

where: 匹配的条件
flush privileges : 立即刷新生效

相关标签: mariadb