Hi.
I have a table with two columns:
create table "GroupsOfOrders" (
"Orders" text[]; -- a set of identifiers
"Period" cube; -- a period of time for all identifiers in field "Orders"
);
How to create excluding constraint, which prevent overlapping "Period"
for all orders in a field "Orders" ?
------------
pasman