This commit is contained in:
2026-06-30 23:11:55 +08:00
parent 0a95e722d6
commit 9fc910f10f
+5 -4
View File
@@ -281,10 +281,11 @@ class SqlBuilder extends Component
*/ */
private function make(): string private function make(): string
{ {
$select = $this->makeCondition(); return join(' ', [
$select .= $this->makeGroup(); $this->makeCondition(),
$select .= $this->makeOrder(); $this->makeGroup(),
return $select; $this->makeOrder(),
]);
} }
/** /**