You can execute 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;