MyBB SQL错误
MyBB经历了一个内部SQL错误,无法继续。
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小组联系以获得技术支持。
发布于 2016-12-04 06:56:29
检查罗斯史密斯二世的解决方案。他写了关于在sql语句中定义排序规则的文章。
https://stackoverflow.com/questions/40956092
复制相似问题