Jump to content

JOIN + ORDER ?


arprilia

Recommended Posts

Greetings to all....

 

I've encountered some problems with my query....

Although it's executed successfully, it takes a lot of time...

 

the query:-

 

SELECT pm_ic, pm_nama FROM a LEFT JOIN b ON (a.pm_id,a.iklan_id) = (b.pm_id,b.iklan_id) WHERE b.statusmohon_id = '98' AND b.iklandetail_id = '15' ORDER BY a.pm_nama

 

BUT, when i remove the ORDER BY statement, it executes faster...

Before this i used this query:-

 

SELECT pm_ic,pm_nama FROM a,b WHERE a.pm_id=b.pm_id AND a.iklan_id=b.iklan_id AND b.statusmohon_id='98' AND b.iklandetail_id='15' ORDER BY pm_nama

 

Any suggestions?

 

Thanx in advance....

Link to comment
https://forums.phpfreaks.com/topic/67189-join-order/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.