日期:2014-05-16 浏览次数:20755 次
select * from 主表 where id not in (select 1 from 从表)
------解决方案--------------------
select a.* from 主表 a left join 从表 b on a.id=b.id where b.id is null
------解决方案--------------------
select a.* from 主表 a left join 从表 b on a.id=b.id where b.id is null
union
select * from 主表 where id=1
------解决方案--------------------
查找1 4 5?
这有什么规则吗