DROP VIEW

Description

This statement is used to drop a logical view VIEW

Syntax:

DROP VIEW [IF EXISTS]
[db_name.]view_name;

Examples

  1. If it exists, then drop the view example_view on example_db.

    DROP VIEW IF EXISTS example_db.example_view;