嗨,我有一个 DB2 查询,如下所示
select count(*) as count from
table_a,
table_b,
table c
where
b.xxx=234 AND
b.yyy=c.wedf
结果集:
数数
618543562
对于上述查询,我什至尝试使用 Count(1),但是当我采用访问计划时,成本是相同的。
select count(1) as count from
table_a,
table_b,
table c
where
b.xxx=234 AND
b.yyy=c.wedf
结果集:
数数
618543562
有没有其他方法可以降低成本。
PS: b.xxx,b.yyy, c.wedf 被索引..
提前致谢。