This commit is contained in:
2021-08-10 10:30:59 +08:00
parent a83ab33799
commit dbf4a018ef
+1 -1
View File
@@ -479,7 +479,7 @@ trait QueryTrait
$oldWhere = '(' . implode(') AND (', $this->where) . ')';
$this->where = [$oldWhere . ' OR ' . $conditionArray];
$this->where = ['(' . $oldWhere . ') OR ' . $conditionArray];
return $this;
}