2023-11-25
极域
00

寒不冻,心冻;云不散,人散。

极限不被定义,领域不被约束。

2025-11-01
小知识
00

MySQL 多表关联查询排序规则冲突完整解决方案

问题描述

在 MySQL 多表关联查询时,经常会遇到类似这样的错误:

(1267, "Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_0900_ai_ci,IMPLICIT) for operation '='")

这是由于不同表或字段使用了不一致的字符集排序规则导致的冲突。本文提供一套完整的解决方案,帮助你将整个数据库的排序规则统一,彻底解决此类问题。

2025-08-30
技术分享
00

原文链接:https://blog.csdn.net/houoyy_/article/details/138707887

1、引入依赖:
xml
<!--sql server驱动--> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId> <version>4.0</version> </dependency> <!--选择下面的--> <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc --> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>11.2.3.jre17</version> </dependency>
2025-08-28
踩坑日记
00

前引

hutool-5.8.6 中新增了【ObjUtil】API

2025-07-22
技术分享
00