We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd96636 commit 1eebd7bCopy full SHA for 1eebd7b
APIJSON-Java-Server/APIJSONORM/src/main/java/apijson/orm/AbstractSQLConfig.java
@@ -1387,6 +1387,7 @@ else if ("!".equals(ce.getKey())) {
1387
newWs += AND;
1388
}
1389
1390
+ //MySQL 因为 NULL 值处理问题,(A & ! B) | (B & ! A) 与 ! (A & B) 返回结果不一样,后者往往更多
1391
if ("^".equals(j.getJoinType())) { // (A & ! B) | (B & ! A)
1392
newWs += " ( ( " + ws + ( StringUtil.isEmpty(ws, true) ? "" : AND + NOT ) + " ( " + js + " ) ) "
1393
+ OR
0 commit comments