Quick onboard
Deployment
Data Modeling
Connecting
Migration
Query
Operations and Maintenance
Common Maintenance
Partition
Backup and Restore
Expansion
Mirroring
Resource Management
Security
Monitoring
Performance Tuning
Troubleshooting
Reference Guide
Tool guide
Data type
Storage Engine
Executor
Stream
DR (Disaster Recovery)
Configuration
Index
Extension
SQL Reference
Delete the view.
DROP VIEW [IF EXISTS] name [, ...] [CASCADE | RESTRICT]
DROP VIEW will delete the existing view. Only view owners can delete it.
IF EXISTS
name
CASCADE
RESTRICT
Delete the view topten:
DROP VIEW topten;
DROP VIEW is fully SQL-compliant, but this standard allows only one view per command to be deleted. Additionally, the IF EXISTS option is a YMatrix database extension.