Doctrine\DBAL\Platforms\SQLServerPlatform::getCreateViewSQL PHP Method

getCreateViewSQL() public method

{@inheritDoc}
public getCreateViewSQL ( $name, $sql )
    public function getCreateViewSQL($name, $sql)
    {
        return 'CREATE VIEW ' . $name . ' AS ' . $sql;
    }
SQLServerPlatform