—
NAME
DROP_COLLATION - remove a collation
SYNOPSIS
bash
DROP COLLATION [ IF EXISTS ] \nname\n [ CASCADE | RESTRICT ]DESCRIPTION
DROP COLLATION removes a previously defined collation. To be able to drop a collation, you must own the collation.
PARAMETERS
IF EXISTS
name
CASCADE
RESTRICT
EXAMPLES
To drop the collation named german:
bash
DROP COLLATION german;COMPATIBILITY
The DROP COLLATION command conforms to the SQL standard, apart from the IF EXISTS option, which is a PostgreSQL extension.
SEE ALSO
ALTER COLLATION (ALTER_COLLATION(7)), CREATE COLLATION (CREATE_COLLATION(7))