我寫了這個查詢獲取問題:排序規則的非法組合在MySQL
select *
from order mbo
where storeId in(select storeid
from store bs
INNER JOIN distributioncenter bd
on bd.distributionCenterId = bs.distributionCenterId
where (bd.orderCloseTime > curtime() and date(bo.orderDate)>=date(now())
and bs.storeId=1112211)
or (date(bo.orderDate)>date(now())and bs.storeId=1112211));
而且此查詢工作正常在我的地方,但是當在其他同事的系統我收到下面的問題。
Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,NUMERIC) for operation '>';
可能是什麼問題?
@Strawberry所有連接的表是UTF8格式 – Akash