DROP_COLLATION
remove a collation
- Provided by: postgresql-client-18 (Version: 18.3-1)
- Source: postgresql-18
- Report a bug
remove a 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.
IF EXISTS
name
CASCADE
RESTRICT
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 PostgreSQL extension.
ALTER COLLATION (ALTER_COLLATION(7)), CREATE COLLATION (CREATE_COLLATION(7))