这个要用SQL, 例如从表A筛选出第一列表A有,但是表B和表C没有的数据:
sel ect * From {表A} Where [第一列] not in (Se lect 第一列 From {表B} Where 第一列 Is not Null) And [第一列] not in (Sel ect 第一列 From {表C} Where 第一列 Is not Null)