Skip to content
Advertisement

Ignore SQL INNER JOIN if specific record exist?

i got two table joined like this

I want to display results of two table joined but with condition if the status of TableB has anything in (‘CO’,’CL’) the whole join with id of TableA would be ignored not just the rows with status not in (‘CO’,’CL’).

A.id and A.TableA_ID are different columns

Original result without where condition would be like this:

My Result:

What i want:

Couldn’t figure out how to do eliminate the whole join if the record ‘CO’ exist.

Advertisement

Answer

You could use not exists:

Or if you only want to hit the tables once you could use an analytic count of the of the statuses you don’t want to see, and eliminate any IDs with a non-zero count:

db<>fiddle

This assumes A.id and A.TableA_ID are different columns; if they’re the same then you don’t need to look at table A directly at all, if you only want those two columns anyway – all of the information you need is in table B anyway.

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