資料庫名稱: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可以加速嗎
謝謝