DeleteQuery::buildQuery PHP 메소드

buildQuery() 보호된 메소드

protected buildQuery ( ) : string
리턴 string
    protected function buildQuery()
    {
        if ($this->statements['FROM']) {
            unset($this->clauses['DELETE FROM']);
        } else {
            unset($this->clauses['DELETE']);
        }
        return parent::buildQuery();
    }