|
|
How to set password to an existing MySQL user account? - Mysql
|
Views : 681
|
|
Tagged in : Mysql
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
SET PASSWORD statement assigns a password to an existing MySQL user account.
For example,
> SET PASSWORD FOR 'user_name'@'host_name' = PASSWORD('newpass');
> where user_name and host_name are exactly as they are listed in the User and Host columns of the mysql.user table entry. |
|
By Ramya, On - 2008-06-02 |
|
|
|