mysql 忘记root密码后修改密码,发现update无法对password进行操作,并报出:ERROR 1054 (42S22): Unknown column 'Password' in 'field list'
大神答案:update mysql.user set authentication_string=password('123qwe') where user='root' and Host ='localhost'; 即用authentication_string替换了password。