Answers for "how to chage password mysql"

SQL
5

set password mysql

-- In case the UPDATE command returns "Column 'Password' is not updatable" run
ALTER USER 'root'@'localhost' IDENTIFIED BY 'newPassword';
flush privileges;
Posted by: Guest on June-12-2020
0

mysql change password

UPDATE mysql.user SET authentication_string=PASSWORD("rootpass") WHERE User='root';
Posted by: Guest on April-21-2021

Code answers related to "how to chage password mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language