set /change password in MYSQL - Mysql Views : 738
Tagged in : Mysql
Send mail vote down 1 vote down 0
Hi...
Use the below query to change/set the password in MYSQL Query Browser.
SET PASSWORD FOR root@localhost=OLD_PASSWORD('newpassword');

Example:
SET PASSWORD FOR root@localhost=OLD_PASSWORD('mysql');
Now, Password can be changed to mysql.

By - Nirmala, On - 2009-06-29




    Login to add Comments .