MySQL中修改表中用户密码的方法有两种,一种是使用MySQL的alter user语句,另一种是使用update语句。
使用alter user语句修改表中用户密码的语法如下:
ALTER USER 'username'@'hostname' IDENTIFIED BY 'new_password';
其中,username是要修改密码的用户名,hostname是要修改密码的主机名,new_password是新的密码。
下面是一个示例,用来修改用户test的密码:
ALTER USER 'test'@'localhost' IDENTIFIED BY 'new_password';
使用update语句修改表中用户密码的语法如下:
UPDATE mysql.user SET authentication_string=PASSWORD('new_password') WHERE user='username' AND host='hostname';
其中,username是要修改密码的用户名,hostname是要修改密码的主机名,new_password是新的密码。
下面是一个示例,用来修改用户test的密码:
UPDATE mysql.user SET authentication_string=PASSWORD('new_password') WHERE user='test' AND host='localhost';
本文链接:http://task.lmcjl.com/news/10816.html