I have two tables which I want to join together using a left outer join. However, even though my left table contains only unique values, the right table satisfies the CONDI
Try useing
select DISTINCT * from @tb1 left outer join @tb2 ON c1 = c2