DropViewStmt::= DROP VIEW [IF EXISTS] name_space [alter_behavior]
IF EXISTS
view_name
示例1
DROP VIEW view_test;
示例2
DROP VIEW IF EXISTS view_test;