Home >Database >Mysql Tutorial >How to change MySQL user password using UPDATE statement?
To change the MySQL user password with the help of UPDATE statement, we need to update the "user" table of the "mysql" database. Its syntax is as follows -
USE mysql; UPDATE user SET authentication_string = PASSWORD(‘new_password’) WHERE user = user_name AND host = host_name;
The first two statements are very common because to change the password of a MySQL user, we need to use the MySQL database and update the user table.
Suppose we want to change the password user@localhost to 'tutorials' then it can be done as follows -
USE mysql; UPDATE user SET authentication_string = PASSWORD('tutorials') WHERE user = 'user' AND host = 'localhost'; FLUSH PRIVILEGES;
The above is the detailed content of How to change MySQL user password using UPDATE statement?. For more information, please follow other related articles on the PHP Chinese website!