DROP VIEW

Description

You can drop a view by using the DROP VIEW clause. The way to drop a view is the same as to drop a regular table.

Syntax

DROP [ VIEW | VCLASS ] view_name [ { ,view_name , ... } ]

Example

DROP VIEW b_view;