MySQL Command: Changing Root Password
December 8, 2009 by admin · Leave a Comment
This command is used to set the password to a user called: root
use mysql
UPDATE user SET Password=PASSWORD(’password’) WHERE user=’root’;
FLUSH PRIVILEGES;
quit
Hotel and Restaurant Inspectors
December 8, 2009 by admin · Leave a Comment
This command is used to set the password to a user called: root
use mysql
UPDATE user SET Password=PASSWORD(’password’) WHERE user=’root’;
FLUSH PRIVILEGES;
quit