Table A: (6 records with '1' value) 1 1 1 1 1 1
Table B: (2 records with '1' value) 1 1
Select * from TableA left join TableB on TableA.col1 = TableB.col1 ?
Select * from TableB left join TableA on TableB.col1 = TableA.col1?
Select * from TableA inner join TableB on TableA.col1 = TableB.col1?
Select * from TableA full outer join TableB on TableA.col1 = TableB.col1?