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
Removes a previously defined collation.
DROP COLLATION [ IF EXISTS ] <name> [ CASCADE | RESTRICT ]
DROP COLLATION removes a previously defined collation. To be able to drop a collation, you must own the collation.
To drop the collation named german
:
DROP COLLATION german;
The DROP COLLATION command conforms to the SQL standard, apart from the IF EXISTS option, which is a Database extension.