InsertQuery::getClauseInsertInto PHP 메소드

getClauseInsertInto() 보호된 메소드

protected getClauseInsertInto ( ) : string
리턴 string
    protected function getClauseInsertInto()
    {
        return 'INSERT' . ($this->ignore ? " IGNORE" : '') . ($this->delayed ? " DELAYED" : '') . ' INTO ' . $this->statements['INSERT INTO'];
    }