
Drop a SQL Server View
How to drop a SQL Server view with a T-SQL query? The DROP VIEW command allows you to simply delete an existing view with a T-SQL script run from SQL Server Management Studio (SSMS). The script below is an example of how to delete a view in a SQL database. That is, the view is deleted, but not the source tables to which it …