oracle join on data filtering issues

  • 2020-06-15 10:24:58
  • OfStack


select a.f_username 
from 
( 
SELECT /*+parallel(gu,4)*/distinct gu.f_username 
FROM t_base_succprouser gu 
where gu.f_expectenddate > (select trunc(sysdate,'Y')FROM DUAL) 
and gu.f_lotid=1 
and gu.f_playid=4 
and gu.f_paymoney>=1500 
) A 
left join 
( 
select 
from t_base_vip_customes 
and ((vu.f_passeddate is null ) or (vu.f_passeddate > trunc(sysdate,'Y') )) 
and ((vu.f_lotid is null ) or (vu.f_lotid=1)) 
and ((vu.f_playid is null ) or (vu.f_playid=4)) 
and ((vu.f_condtionid is null ) or (vu.f_condtionid=3)) 
)B 
on A.f_username=B.f_usernam 
where b.f_username is null 

Use the following statement to identify only a subset of users

SELECT /*+parallel(gu,4)*/distinct gu.f_username 
FROM t_base_succprouser gu 
left join t_base_vip_customes VU on gu.f_username=vu.f_username 
gu.f_expectenddate > (select trunc(sysdate,'Y')FROM DUAL) 
and gu.f_lotid=rec_viplotplay.f_lotid 
and gu.f_playid=rec_viplotPlay.f_Playid 
and gu.f_paymoney>=rec_viplotPlay.F_Conditon_ValuesA 
and ((vu.f_passeddate is null ) or (vu.f_passeddate > trunc(sysdate,'Y') )) 
and ((vu.f_lotid is null ) or (vu.f_lotid=rec_viplotplay.f_lotid)) 
and ((vu.f_playid is null ) or (vu.f_playid=rec_viplotPlay.f_Playid)) 
and ((vu.f_condtionid is null ) or (vu.f_condtionid=rec_viplotPlay.F_CondtionID)) 
and vu.f_username is null 

Execution plan:

SELECT STATEMENT, GOAL = ALL_ROWS 
HASH UNIQUE 
NESTED LOOPS OUTER 
PARTITION RANGE ALL 
TABLE ACCESS FULL Object name=T_BASE_SUCCPROUSER 
VIEW 
FILTER 
TABLE ACCESS FULL Object name=T_BASE_VIP_CUSTOMES 
FAST DUAL 

Later changed to the following can be all found out

SELECT /*+parallel(gu,4)*/distinct gu.f_username 
FROM t_base_succprouser gu 
left join t_base_vip_customes VU on gu.f_username=vu.f_username 
and ((vu.f_passeddate is null ) or (vu.f_passeddate > trunc(sysdate,'Y') )) 
and ((vu.f_lotid is null ) or (vu.f_lotid=rec_viplotplay.f_lotid)) 
and ((vu.f_playid is null ) or (vu.f_playid=rec_viplotPlay.f_Playid)) 
and ((vu.f_condtionid is null ) or (vu.f_condtionid=rec_viplotPlay.F_CondtionID)) 

where gu.f_expectenddate > (select trunc(sysdate,'Y')FROM DUAL) 
and gu.f_lotid=rec_viplotplay.f_lotid 
and gu.f_playid=rec_viplotPlay.f_Playid 
and gu.f_paymoney>=rec_viplotPlay.F_Conditon_ValuesA 
and vu.f_username is null 
 Execution plan:  
SELECT STATEMENT, GOAL = ALL_ROWS 
HASH UNIQUE 
FILTER 
NESTED LOOPS OUTER 
TABLE ACCESS BY GLOBAL INDEX ROWID Object name=T_BASE_SUCCPROUSER 
INDEX RANGE SCAN Object name=IX_BASE_PROUSER_LOWEX 
FAST DUAL 
VIEW 
TABLE ACCESS FULL Object name=T_BASE_VIP_CUSTOMES 

oracle don't know how to filter the data first and then connect? Is so stupid! And it also filters out the data that fits the criteria

Related articles: