在ACCESS2007中怎么才能通过查询显示一个数据表中不含另个数据表中某个值的记录

2024-11-22 03:01:15
推荐回答(2个)
回答1:

select id from A表
where id not in (
select id from b表)
比较简单,效率一般

回答2:

left join