Quantcast
Channel: amitmondal
Viewing all articles
Browse latest Browse all 10

Retrieve And Update Mysql username and Password with SQL

$
0
0

List all the users:

SELECT * FROM mysql.user;

Reset password;

UPDATE mysql.user SET Password=PASSWORD('[password]') WHERE User='[username]';



Viewing all articles
Browse latest Browse all 10

Trending Articles