[code="java"]1. select a.id from A a 数据150条2. select a.id from A a where a.id in(select b.aid from B b) 数据140条3. select a.id from A a where a.id not in(select b.aid from B b) 数据为空请问这是什么问题,求解[/code]
第3句查出来应该是10条才对啊。a.id有空的?