Skip to content
Advertisement

Filter duplicate rows in Postgres based on conditions between those rows

Given a table

How would I return all matching records that…

  • have at least one identical value for irs_number in another row AND
  • at least one mop_up of those with the same irs_number must be set to 1 AND
  • the ou values are not identical, i.e. only return those not matching to a row with the identical irs_number.

… so that all irs_numbers would be returned (not only one where the conditions are true – see example below).

I tried this but the query cannot finish within reasonable time:

As well as variations of duplicate counts as described here: How to find duplicate records in PostgreSQL – they will always just return the duplicates but not the proper filter applied.


edit:

Example data:

SQLFiddle: http://sqlfiddle.com/#!17/be28f

a query should ideally return:

(order not important) meaning it should return all rows matching having the irs_number with the condition above.

Advertisement

Answer

You should be able to do this with a simple exists clause:

EDIT:

The above misinterpreted the question. It assumed that a mop_up = 1 needed to be on a different ou. As I read the question, this is ambiguous but doesn’t appear to be what you want. So, two exists address this:

Here is a db<>fiddle.

Both these solutions will be able to take advantage of an index on (irs_number, mop_up, ou).

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement