builder = SqlBuilder::builder($this); } /** * @return string * @throws Exception */ public function getSql(): string { return $this->builder->get(); } /** * @return string * @throws Exception */ public function getCondition(): string { return $this->builder->getCondition(); } }