আমি কেবল সহকর্মীর জন্য অনুরূপ কিছু তৈরি করেছি। মূলত আমি একটি গোপন টেবিল তৈরি করেছি যাতে উপযুক্ত বাধাগুলির সাথে প্রতিটি (ব্যবহারকারী, ভূমিকা) জুটির জন্য একটি সারি থাকে। ব্যবহারকারীর টেবিলটি তখন সমস্ত ভূমিকা সহ একটি অ্যারেতে জড়িত লুকানো সারণির একটি দৃশ্য ছিল into আমি তখন একটি উপযুক্ত নিয়ম যুক্ত করে দৃশ্যে প্রবেশ করা সম্ভব করে দিয়েছি। এটি এখানে:
trailer=# create table harvester (id int unique, label text);
CREATE TABLE
trailer=# insert into harvester values (1,'grain'), (2,'cricket');
INSERT 0 2
trailer=# create table donkey (id int, others int references
harvester(id));
CREATE TABLE
trailer=# create unique index donkey_ears on donkey (id, others);
CREATE INDEX
trailer=# create view combine as select id, array_agg(others) as others
from donkey group by id;
CREATE VIEW
trailer=# create rule combine_insert as on insert to combine do instead
(delete from donkey where donkey.id=new.id;insert into donkey select
new.id,unnest(new.others) );
CREATE RULE
trailer=# insert into combine values (1,'{1,2}');INSERT 0 2
trailer=# select * from combine ;
id | others
----+--------
1 | {1,2}
(1 row)
trailer=# insert into combine values (1,'{1,2}');
INSERT 0 2
trailer=# select * from combine ;
id | others
----+--------
1 | {1,2}
(1 row)
trailer=# insert into combine values (2,'{1,2,3}');
ERROR: insert or update on table "donkey" violates foreign key
constraint "donkey_others_fkey"
DETAIL: Key (others)=(3) is not present in table "harvester".
trailer=#
আমি আশা করি এটি সাহায্য করবে. আপনি এটিকে কিছুটা দক্ষ করে তুলতে পারেন এবং আপনার প্রয়োজনীয়তার উপর নির্ভর করে আরও নিয়ম যুক্ত করতে পারেন।