mysql에서 비밀번호를 변경할 때 일반적으로 쓰는 명령어


update user set password=password('q1w2e3') where user='root';


근데 이게


ERROR 1054 (42S22): Unknown column 'password' in 'field list'


에러가 발생할때가 있다..

이때는 password 대신 authentication_string 필드가 존재한다.

따라서 


update user set authentication_string=password('q1w2e3') where user='root';

로 시도해본다.

+ Recent posts