DROP TYPE
Function
DROP TYPE deletes a user-defined data type. Only the type owner has permission to run this statement.
Syntax
DROP TYPE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
Parameter Description
- IF EXISTS
Sends a notice instead of an error if the specified type does not exist.
- name
Specifies the name of the type to be deleted (schema-qualified).
- CASCADE
Deletes objects (such as columns, functions, and operators) that depend on the type.
RESTRICT
Refuses to delete the type if any objects depend on it. This is the default.
Examples
For details about CREATE TYPE, see Examples.
Helpful Links
Last Article: DROP TRIGGER
Next Article: DROP USER
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.