This commit is contained in:
2026-07-06 21:26:40 +08:00
parent 06de50699a
commit bcd75c84ac
+1 -1
View File
@@ -221,7 +221,7 @@ class SqlBuilder extends Component
*/
public function all(): string
{
return $this->makeSelect($this->query->from) . ' ' . $this->make() . ' ' . $this->makeLimit();
return $this->makeSelect($this->query->select) . ' ' . $this->make() . ' ' . $this->makeLimit();
}