Well, complex to me at least.
CREATE TABLE reports (
report_id serial,
...
);
CREATE TABLE similar (
similar_id serial,
backup text,
...
);
CREATE TABLE choices (
choice_id serial, --PK
report_id int NOT NULL, --FK
similar_id int NOT NULL, --FK
chosen boolean,
chosen_time timestamp NOT NULL,
...
);
A process goes through the reports, bundles them into similar groups with choice entries where chosen is null. A series of users make choices of the one in the group to keep, setting chosen to true. The last choice wins.
This is the Postgres 8.3 friendly query that we came up with to do this in one query.
SELECT reports.* FROM
(SELECT choices.* FROM similar
JOIN choices ON similar.similar_id=choices.similar_id
WHERE similar.backup='' AND choices.chosen IS NOT NULL) AS desired_choices
LEFT OUTER JOIN
(SELECT choices.* FROM similar
JOIN choices ON similar.similar_id=choices.similar_id
WHERE similar.backup='' AND choices.chosen IS NOT NULL) AS greater_choices
ON greater_choices.report_id = desired_choices.report_id
AND greater_choices.chosen_time > desired_choices.chosen_time
JOIN reports on desired_choices.report_id = reports.report_id
WHERE greater_choices.chosen_time IS NULL --indicates this is the newest
AND desired_choices.chosen = true;
I'm really not sure where to even start to replicate it in LLBLGen. Also, this is part of a querying system so other predicates will be tacked on later. Do I need to resign myself to a query for report_ids to use as a FieldCompareSetPredicate?
Currently using 4.0, but I could probably upgrade to 4.2 if need be.