I have one table that I need to bump against multiple tables with left outer joins excluding the right(s). Is there a best practice for this? Union all the other tables first? Something else?
Here's the first thought that comes to my mind to handle this, but I want to know if there is a better more efficient way.
select
master_table.*
from
master_table
left outer join
(
select customer_id from table_1
union
select customer_id from table_2
union
select customer_id from table_3
union
select customer_id from table_4
) bump_table
on
master_table.customer_id = bump_table.customer_id
where
bump_table.customer_id is null
table_[1|2|3|4]. There is a trade-off between sorting and joining extra rows. If there are many duplicates, it's probably best to sort first and then join fewer rows (what you have). But if there are very few duplicates, it's better tounion alleverything, and join a few extra rows. – jonearles Jul 2 '12 at 3:23