Answers for "check mysql root password windows"

SQL
0

how to change mysql root password in windows 10

ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';
Posted by: Guest on October-14-2020
0

how to know password of mysql root in linux terminal

mysql> use mysql;
​mysql> update user set authentication_string=password('NEWPASSWORD') where user='root';
​mysql> flush privileges;
​mysql> quit
Posted by: Guest on October-16-2021

Code answers related to "check mysql root password windows"

Code answers related to "SQL"

Browse Popular Code Answers by Language