Re: which is best for JOIN approach
Posted by:
Ra Nala
Date: February 19, 2016 05:28AM
Rick James
i have applied your approach in my extraction queries and facing so many performance issues. i am not able to retrieve just 500000 records using below approach and it is your approach.
select ...
from inform a
left join (
SELECT ... FROM infmrq b JOIN contact ec on b.id=ec.id) on b.id=a.id
) AS bec ON
and
YOU have mentioned my case is different one that's why i am going to apply LEFT JOINS to all my tables why because i need all data from left table(i.e. first table) and want records from right side table if matched if they haven't matched will get null values.
Subject
Views
Written By
Posted
1767
November 24, 2015 09:39AM
1070
November 25, 2015 02:14AM
1108
November 25, 2015 02:42AM
1138
November 29, 2015 11:53AM
Re: which is best for JOIN approach
992
February 19, 2016 05:28AM
966
February 21, 2016 04:56PM
1042
February 19, 2016 05:31AM
922
February 21, 2016 01:40PM
968
February 21, 2016 01:43PM
960
February 25, 2016 05:50AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.