How to change password of user in MySQL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • CodeMaster123
    New Member
    • Feb 2008
    • 4

    How to change password of user in MySQL

    Is there any way to change the password which is assigned to user in MySQL
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    When you have the proper authority to do so:
    Code:
    SET PASSWORD [FOR user] = PASSWORD('some password')
    Ronald

    Comment

    Working...