Question:Which of the following will reset the MySQL password for a particular user?
A UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='username';
B UPDATE mysql.user SET Password='password' WHERE User='username';
C UPDATE mysql.user SET Password=RESET('password') WHERE User='username';
D None
+ AnswerD
+ Report