2016-12-04 2 views
0

MyBB SQL 오류가 발생했습니다.SQL 오류 : 1267 - 불법 정렬의 믹스 (utf8_general_ci, IMPLICIT) 및 운영 (utf8_persian_ci, IMPLICIT) MyBB 내부 SQL 오류가 발생했습니다 및 계속할 수 없습니다</p> <p>'='

SQL 오류 :

1267 - Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_persian_ci,IMPLICIT) for operation '=' 

검색어 :

SELECT t.* 
    ,t.subject AS threadsubject 
    ,u.username 
    ,u.usergroup 
    ,u.displaygroup 
    ,i.* 
    ,i.NAME AS iconname 
    ,t.dateline AS threaddate 
    ,t.lastpost AS threadlastpost 
FROM mybb_threads t 
LEFT JOIN mybb_icons i ON (i.iid = t.icon) 
LEFT JOIN mybb_users u ON (t.lastposter = u.username) 
WHERE t.visible = '1' 
    AND t.uid = '54445' 
GROUP BY t.tid 
ORDER BY threadlastpost DESC LIMIT 5 

기술 지원을위한 MyBB 그룹에 문의하시기 바랍니다.

image1

image 2

+0

의 사용 가능한 복제 [정렬의 불법 믹스 MySQL의 오류] 일반적으로 (http://stackoverflow.com/questions/1008287/illegal-mix-of-collations-mysql-error) – Evert

+0

가난의 결과 디자인 된 테이블. t.lastposter와 u.username이 같은 데이터 정렬을 가지도록 정의되어 있습니까? – jarlh

+0

자세한 안내를하십시오. – abbas

답변

관련 문제