sql tunning1 物化內連線檢視:

li__hl8888發表於2016-05-20

物化內連線檢視:     

with t1 as   

  1. (select /*+ materialize */  
  2.  a.user_name, a.invest_id  
  3.          from base_data_login_info@agent a  
  4.          where a.str_day <= '20160304' and a.str_day >= '20160301'  
  5.  and a.channel_id in (select channel_rlat from tb_user_channel a, tb_channel_info b where a.channel_id = b.channel_id and a.user_id = 5002)  
  6.  and a.platform = a.platform)  
  7. select count(distinct user_name) ,count(distinct invest_id) from t1;  

總結 :1>對於連線condition column,in條件column ,資料分佈高度不平衡的列,

count(distinct colmn1)需要放在最外層。

          2> with t1 as     /*+ materialize */ 對資料不平衡比較有效。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8568259/viewspace-2103910/,如需轉載,請註明出處,否則將追究法律責任。

相關文章