MySQL Forums
Forum List  »  Performance

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.

Options: ReplyQuote


Subject
Views
Written By
Posted
1636
November 24, 2015 09:39AM
1020
November 25, 2015 02:42AM
1036
November 29, 2015 11:53AM
Re: which is best for JOIN approach
930
February 19, 2016 05:28AM
884
February 21, 2016 04:56PM
956
February 19, 2016 05:31AM
835
February 21, 2016 01:40PM
885
February 21, 2016 01:43PM
911
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.