Skip to content
Advertisement

Group rows on condition PostgreSQL

I have a table with repeated Column1 and Column2 pairs, let’s say this is ‘many-to-many‘ table. Also, I have there one extra integer column – Column3.
What I want is select conditionally grouped rows, like
1). If pair of Column1 and Column2 have several records contains 5 value among others – then it should be grouped into one row with Column3: 5;
2). Else, I don’t want rows to be grouped.

How that can be achieved? My query do the first requirement but I have no idea how to implement the second. Is it possible via CTE, or subquery only?

Table data example:

Desired result:

Advertisement

Answer

One option uses not exists and a correlated subquery:

You can also use window functions:

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