Bạn không thể tạo kiểu enum từ kiểu enum khác:
bạn có thể tạo ANIMAL như:
CREATE TYPE ANIMAL AS (h hoofed,m monkey);
Ví dụ đang sử dụng:
CREATE TABLE your_table
(
a ANIMAL
);
INSERT INTO your_table(a) select (select ('horse','macaque')::ANIMAL);