You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
같은 DB에서 테이블의 charset이 utf8이지만 세부 charset이 다른 경우, 두 컬럼을 조인하면 오류가 발생한다.
세부 charset: utf8_general_ci, utf8_unicode_ci
table의 charset을 변경해주거나, 조인할 때 쿼리에서 charset을 변환한다.
~ JOIN
TEST n ONm.ID=n.ID
SQL Error [1267] [HY000]: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '='// 아래와 같이 coallte 명령어로 강제로 변환한다.
~ JOIN
TEST n ONm.ID COLLATE utf8_unicode_ci =n.ID
The text was updated successfully, but these errors were encountered:
MySQL - DB에서 다른 charset 설정의 두 컬럼 조인
The text was updated successfully, but these errors were encountered: