Skip to content
Advertisement

How can I unite these two related queries?

I have this query to check if a person is a customer or have been:

And I have this other query to get the locations:

How can I unite them and show person location as a single row on the first query?

Advertisement

Answer

If I follow this correctly, you can use lateral joins:

As commented already, your original first query is missing an order by clause, which makes it undefined which subscription status will be chosen where there are several matches. This translates as order by ps.?? in the second subquery, which you would need to replace with the relevant column name.

Another flaw, that time in the second query in your question, is that the order by clause of string_agg() is not deterministic (all rows in the group have the same person_id). I ordered by location name instead, you can change that to some other column if you like.

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