SQL DROP VIEW 关键字使用方法及示例

SQL 关键字参考

DROP VIEW(删除视图)

DROP VIEW命令将删除一个视图。

以下SQL删除了“Brazil Customers”视图:

DROP VIEW [Brazil Customers];

SQL 关键字参考