如何使用自联接和不使用子查询来提高单个表中的sybase选择查询的性能?

时间:2015-11-28 09:25:00

标签: sybase

像。,

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亿条记录,因此执行需要很长时间。有没有更好的方法来优化查询以更好地提高性能!! ??

0 个答案:

没有答案