Answers for "mysql password is not working"

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
3

alter user root mysql

ALTER USER 'root'@'localhost' IDENTIFIED BY 'newPassword';
Posted by: Guest on October-22-2020

Code answers related to "mysql password is not working"

Code answers related to "SQL"

Browse Popular Code Answers by Language