Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT) for operation
时间: 2023-10-17 20:32:37 浏览: 89
这个错误是因为在查询中使用了不一致的排序规则(utf8_general_ci和utf8_unicode_ci)。默认情况下,MySQL使用的字符集是utf8,排序规则是utf8_general_ci。但是,如果在查询中使用了不同的排序规则,就会导致这个错误的出现。对于这个问题,你可以考虑以下解决方法:
1. 将所有使用到的表的排序规则统一为utf8_general_ci或utf8_unicode_ci,确保一致性。
2. 在执行查询的时候,指定使用相同的排序规则,以避免不一致的问题。
3. 如果你需要存储更多的字符集,可以考虑将编码改为utf8mb4,它兼容utf8,并且能够表示更多的字符。
通过采取以上措施,你应该能够解决这个错误。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for ...](https://blog.csdn.net/u013727805/article/details/82988029)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [java.sql.SQLException: Illegal mix of collations (utf8_unicode_ci,IMPLICIT) ....错误](https://blog.csdn.net/harry5508/article/details/81323405)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文