Quick onboard
Deployment
Data Modeling
Connection
Migration
Query
Operations and Maintenance
Common Maintenance
Partition
Backup and Restore
Expansion
Monitoring
Performance Tuning
Troubleshooting
Reference Guide
Tool guide
Data Type
Storage Engine
Executor
Stream
DR (Disaster Recovery)
Configuration
Index
Extension
SQL Reference
Removes a domain.
DROP DOMAIN [IF EXISTS] <name> [, ...] [CASCADE | RESTRICT]
DROP DOMAIN removes a previously defined domain. Only the owner of a domain can remove it.
Remove the domain named us_postal_code:
DROP DOMAIN us_postal_code;
This command conforms to the SQL standard, except for the IF EXISTS option, which is a Database extension.