MySQLのパスワードがわからなくなった時に使う root のパスワードリセットのためのSQL文

UPDATE mysql.user SET Password=PASSWORD('masterpassword') WHERE User='root';
FLUSH PRIVILEGES;