work mysql BINARY 函数
BINARY背景在使用模糊查询的时候,报错:// 非法组合Illegal mix of collations for operation 'like'原因在于 date,time,datetime 类型匹配字符串即:o.ship_day LIKE BINARY concat('%','五','%')ship_day 是 date 类型。解决加 BINARY 关键字o.ship_day LIKE BINARY concat('%','五','%')BINARY 的作用: 将字





