Skip to content
Advertisement

SQL query – Records has at least one of the relationships specified – alternative?

I have 4 tables person, employments, properties, memberships

How can I filter people that have at least one of the three relationships above?

What I tried:

Seems to be working, but it looks odd, and I am not sure if it’s the most efficient way of doing it.

Any tips?

Advertisement

Answer

Your IN clauses are redundant. You have a correlation clause and then are checking the same column for IN. This could confuse the optimizer (but probably not).

This is a simpler way to express the logic:

I would be surprised, however, if this had a noticeable affect on performance.

For performance, you want indexes on:

  • employments(person_id)
  • person_properties(person_id)
  • union_memberships(person_id).
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement