MS SQL Server Alter View

The MS SQL Server Alter View Tool allows users to alter views by changing the view query using drop and create SQL statements.

Listed below is example SQL generated by the Alter View Tool.

DROP VIEW dbo.employee_view

create view employee_view (v_ssn, v_fname) as select ssn, fname from employee