天天看点

开发指南—DDL语句—分区表语法—DROP VIEW

语法

DROP VIEW [IF EXISTS] view_name      

示例

# 创建视图
create view v as select 1;
# 删除视图
drop view v;