/ Published in: SQL
Change a user password
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
UPDATE mysql.user SET Password=PASSWORD('password') WHERE USER='username'; FLUSH PRIVILEGES;