数据库名称:Oracle
数据库版本:12c
内容/问题描述:我有一段同时join好几张表格的查询sql:
select * from t1,t2,t3,t4
where tl.t1a=t2.t2a
and t1.t1b=t2.t2b
and t1.t1c=t2.t2c
and t1.t1d=t2.t2d
and t3.t3a=t1.t1c
and t3.t3b='AAA'
and t2.t2e='BBB'
and t1.t1e=t4.t4a
这样的语法,在查询时的效率尚可,但是如果将上面的语法变成子查询,
然后查出共有多少笔资料:
slect count(*) from
(
select * from t1,t2,t3,t4
where tl.t1a=t2.t2a
and t1.t1b=t2.t2b
and t1.t1c=t2.t2c
and t1.t1d=t2.t2d
and t3.t3a=t1.t1c
and t3.t3b='AAA'
and t2.t2e='BBB'
and t1.t1e=t4.t4a
)
写成以上这样,要去取得资料的总笔数,速度却慢了将近10倍!!
第一笔SQL花3秒钟,第二笔SQL却花了整整30秒!!
请问这样的话,有办法只修改SQL本身,让查询总笔数的SQL可以加速吗
谢谢