In SQL I'd say:select a.*from TableA a left join TableB b on a.Type = b.Type and a.SomeDate < b.AnotherDatewhere b.ID is null This would select all records ...
確定! 回上一頁