多表查詢出現#1267 - Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT) for operation '='
时间: 2023-10-21 10:25:32 浏览: 148
多表查询出现#1267 - Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT) for operation '='的错误是由于查询中的字符集不匹配导致的。解决这个问题的方法是通过设置连接字符集来解决。
在MySQL中,可以使用以下语句来设置连接字符集:
```
SET collation_connection = 'utf8mb4_unicode_ci';
```
将'utf8mb4_unicode_ci'替换为你希望使用的字符集。这样,在多表查询时,连接字符集会与查询中的字符集匹配,避免出现字符集不匹配的错误。
另外,如果你希望永久解决这个问题,可以考虑修改数据库和数据表的字符集设置,使其与你希望使用的字符集一致。可以通过以下语句来修改数据库字符集:
```
ALTER DATABASE database_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;```
将'database_name'替换为你的数据库名称,并将'utf8mb4_unicode_ci'替换为你希望使用的字符集和校对规则。
同样地,你也可以使用以下语句来修改数据表的字符集:
```
ALTER TABLE table_name CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
```
将'table_name'替换为你的数据表名称,并将'utf8mb4_unicode_ci'替换为你希望使用的字符集和校对规则。
通过设置连接字符集和修改数据库、数据表的字符集,你应该能够解决多表查询中出现字符集不匹配的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [mysql表之间关联查询报错:1267 - Illegal mix of collations (utf8mb4_0900_ai_ci,IMPLICIT) and (utf8mb4...](https://blog.csdn.net/qq_29864051/article/details/124456169)[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_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [【MySQL】报错1267 - Illegal mix of collations (utf8mb4_unicode_ci,IMPLICIT) and (utf8mb4_general_ci,...](https://blog.csdn.net/weixin_43431218/article/details/131574650)[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_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [关于mysql查询字符集不匹配问题的解决方法](https://download.csdn.net/download/weixin_38686542/14907633)[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_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
阅读全文