This commit is contained in:
2021-03-26 14:30:19 +08:00
parent 17f4f8c896
commit a67200e4fb
2 changed files with 14 additions and 4 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ trait Builder
$_tmp[] = $_value;
}
if (!empty($_tmp)) {
return sprintf(' WHERE %s', implode(' AND ', $_tmp));
return implode(' AND ', $_tmp);
}
return '';
}