Deletes a materialized view. This syntax is supported only by clusters of 8.2.1.100 or later.
None
1 2 | DROP MATERIALIZED VIEW [ IF EXISTS ] {[schema.]materialized_view_name} [, ...] [ CASCADE | RESTRICT ]; |
Sends a notice instead of an error if the specified materialized view does not exist.
Name of the materialized view to be deleted.
Delete a materialized view.
1 | DROP MATERIALIZED VIEW mv1; |