Yes there is per SQL 92 standard and the syntax is
<drop view statement> ::=
DROP VIEW <table name> <drop behavior>
Syntax Rules
1) Let V be the table identified by the and let VN
be that . The schema identified by the explicit or
implicit schema name of VN shall include the descriptor of V.
2) V shall be a viewed table.
3) If RESTRICT is specified, then V shall not be referenced in
the of any view descriptor or the of any assertion descriptor or constraint descriptor.
Note: If CASCADE is specified, then any such dependent object
will be dropped by the execution of the <revoke statement> spec-
ified in the General Rules of this Subclause.
Access Rules
1) The current shall be equal to the
that owns the schema identified by
the of the table identified by VN.
General Rules
1) Let A be the current . The following
is effectively executed with a current of "_SYSTEM" and without further Access
Rule checking:
REVOKE ALL PRIVILEGES ON VN FROM A CASCADE
2) The identified view and its descriptor are destroyed.
Leveling Rules
1) The following restrictions apply for Intermediate SQL:
None.
2) The following restrictions apply for Entry SQL in addition to
any Intermediate SQL restrictions:
a) Conforming Entry SQL language shall not contain a <drop view
statement>.