|
DROP TYPENameDROP TYPE — Removes a user-defined type from the system catalogsDROP TYPE typename Inputs
Outputs
DescriptionDROP TYPE will remove a user type from the system catalogs. Only the owner of a type can remove it. NotesDROP TYPE statement is a Postgres language extension. Refer to CREATE TYPE for inforamation on how to create types. It is the user's responsibility to remove any operators, functions, aggregates, access methods, subtypes, and classes that use a deleted type. If a built-in type is removed, the behavior of the backend is unpredictable. UsageTo remove the box type: DROP TYPE box; CompatibilitySQL3DROP TYPE is a SQL3 statement. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |