Files
doris/docs/documentation/cn/sql-reference/sql-statements/Data Definition/DROP VIEW.md

1.1 KiB

DROP VIEW

description

该语句用于删除一个逻辑视图 VIEW
语法:
    DROP VIEW [IF EXISTS]
    [db_name.]view_name;

example

1. 如果存在,删除 example_db 上的视图 example_view
    DROP VIEW IF EXISTS example_db.example_view;

keyword

DROP,VIEW