I have two A1 and A2 tables wit single column.
A    B
-    -
1    3
2    4
3    5
4    6
I need to select records from A which are not in B. For this i tried select A from [A1] as a  left outer join A2 as c on a.[A]=c.[B] but it select 1 and 2 more than one time, i want unique results only, want 1 and 2 only. Refereed few links Outer join but not able to understand fully. I know this is silly question but i am new with joins. 
 
     
     
    

