2011-04-14 5 views

답변

2
select a.* 
    from TableA as a 
    left join TableB as b 
    on a.Col = b.Col 
    where isNull(b.Col)