This commit is contained in:
2021-03-26 19:27:01 +08:00
parent c933c0f4f4
commit 1f35b3f91f
+1 -1
View File
@@ -135,7 +135,7 @@ trait Builder
$_tmp[] = $_value;
}
if (!empty($_tmp)) {
return implode(' AND ', $_tmp);
return '(' . implode(') AND (', $_tmp) . ')';
}
return '';
}