Here for example there is a sign:
CREATE TABLE "Prixod" ( "ID" serial NOT NULL, "Сomposition" ComprositionPrixod[] NOT NULL, CONSTRAINT Prixod_pk PRIMARY KEY ("ID") ); and there are two types:
Create type ComprositionPrixod AS ( Name character varying, Count numeric, Price numeric ); Create type ComprositiontTransfer AS ( Name character varying, Count numeric ); Can I do something like that, so that both types could be entered into a column: Something like: "Сomposition" ComprositionPrixod[] or ComprositiontTransfer[] NOT NULL ?