English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Usage and Example of SQL DROP VIEW Keyword

SQL Keyword Reference

DROP VIEW (Delete View)

The DROP VIEW command will delete a view.

The following SQL deletes the 'Brazil Customers' view:

DROP VIEW [Brazil Customers];

SQL Keyword Reference