This topic describes how to use the DROP VIEW statement to delete a view of a PolarDB-X instance.
Syntax
DROP VIEW [IF EXISTS] view_nameExample
# Create a view.
create view v as select 1;
# Delete a view.
drop view v;This topic describes how to use the DROP VIEW statement to delete a view of a PolarDB-X instance.
DROP VIEW [IF EXISTS] view_name# Create a view.
create view v as select 1;
# Delete a view.
drop view v;