mysql>updatemysql.userSETPassword=OLD_PASSWORD('newpwd') ->whereHost='some_host'ANDUser='some_user'; mysql>FLU
mysql> update mysql.user SET Password = OLD_PASSWORD('newpwd')
-> where Host = 'some_host' AND User = 'some_user';
mysql> FLUSH PRIVILEGES;