像。,
select * from tab_260 a
where a.id in (1,2,3,4,5)
and a.date < '151128'
and exists
(select b.num
from tab_260 b
where b.id in (20,30,50)
and b.date < '151128'
and b.num = a.num )
通过加入&#39;数字来查询同一个表格。领域。但由于表中有大约1亿条记录,因此执行需要很长时间。有没有更好的方法来优化查询以更好地提高性能!! ??