Ouzo\Db\Dialect\MySqlDialect::table PHP 메소드

table() 공개 메소드

public table ( )
    public function table()
    {
        $alias = $this->_query->aliasTable;
        $table = $this->tableOrSubQuery();
        if ($alias) {
            $aliasOperator = $this->_query->type == QueryType::$DELETE ? '' : ' AS ';
            return $table . $aliasOperator . $alias;
        }
        return $table;
    }