更改密碼時出現ERROR 1054

weixin_33724059發表於2018-07-22

MySQL5.7更改密碼時出現ERROR 1054 (42S22): Unknown column 'password' in 'field list'

新安裝的MySQL5.7,登入時提示密碼錯誤,安裝的時候並沒有更改密碼,後來通過免密碼登入的方式更改密碼,輸入update mysql.user set password=password('root') where user='root'時提示ERROR 1054 (42S22): Unknown column 'password' in 'field list',原來是mysql資料庫下已經沒有password這個欄位了,password欄位改成了
authentication_string

更改語句替換為update mysql.user set authentication_string=password('root') where user='root' ;即可

相關文章