We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 696fc9e commit 2c7fb88Copy full SHA for 2c7fb88
Database.php
@@ -410,6 +410,7 @@ public function in($field, $values = [])
410
if(count($values))
411
{
412
$this->_query .= " $field IN (" . implode(",", $values) . ")";
413
+ $this->_where = "AND";
414
}
415
416
@@ -424,6 +425,7 @@ public function notIn($field, $values = [])
424
425
426
427
$this->_query .= " $field NOT IN (" . implode(",", $values) . ")";
428
429
430
431
@@ -697,4 +699,4 @@ public function showMeSchema()
697
699
698
700
return $this->_schema;
701
-}
702
+}
0 commit comments