Jump to content

selecting fields from diffrent tables


Recommended Posts

 

i want to display only the records that mach from two tables i have used this mysql code but it takes toolong to show the records it takes more then few min.

 

SELECT company.name, routes.name

FROM company, routes

WHERE company.name = routes.name

ORDER BY routes.name

 

i have 16000 records in routes table and 3000 records in company table.

 

what i want to do is i want the mysql to take the name of company from routes table and compare it wiht company.name table .

 

if the same company name exists in company.name table display.

 

and when it takes few min and displays the records it shows i have 28558 records.

 

in table routes i have the same company name repeated few times but the functions are diffrent.

 

how can i solve this problem and make it work faster its very very slow now.

Link to comment
Share on other sites

[!--quoteo(post=322407:date=Nov 27 2005, 09:33 AM:name=khan kaka)--][div class=\'quotetop\']QUOTE(khan kaka @ Nov 27 2005, 09:33 AM) 322407[/snapback][/div][div class=\'quotemain\'][!--quotec--]

i want to display only the records that mach from two tables i have used this mysql code but it takes toolong to show the records it takes more then few min.

 

SELECT company.name, routes.name

FROM company, routes

WHERE company.name = routes.name

ORDER BY routes.name

 

i have 16000 records in routes table and 3000 records in company table.

 

what i want to do is i want the mysql to take the name of company from routes table and compare it wiht company.name table .

 

if the same company name exists in company.name table display.

 

and when it takes few min and displays the records it shows i have 28558 records.

 

in table routes i have the same company name repeated few times but the functions are diffrent.

 

how can i solve this problem and make it work faster its very very slow now.

 

As company.name and routes.name are identical in your query you only have to select one of them in your result set:

 

SELECT routes.name

FROM routes, company

WHERE company.name = routes.name

ORDER BY routes.name

 

The usage of DISTINCT can eliminate doubles in your result set:

SELECT DISTINCT routes.name

FROM routes, company

WHERE company.name = routes.name

ORDER BY routes.name

 

If possible, making routes.name and company.name indexes will improve the speed of your query.

 

Link to comment
Share on other sites

[!--quoteo(post=322409:date=Nov 27 2005, 03:10 AM:name=Honoré)--][div class=\'quotetop\']QUOTE(Honoré @ Nov 27 2005, 03:10 AM) 322409[/snapback][/div][div class=\'quotemain\'][!--quotec--]

As company.name and routes.name are identical in your query you only have to select one of them in your result set:

 

SELECT routes.name

FROM routes, company

WHERE company.name = routes.name

ORDER BY routes.name

 

The usage of DISTINCT can eliminate doubles in your result set:

SELECT DISTINCT routes.name

FROM routes, company

WHERE company.name = routes.name

ORDER BY routes.name

 

If possible, making routes.name and company.name indexes will improve the speed of your query.

 

 

i tried it its still very very very slow.

how can i index my tables?

 

 

Link to comment
Share on other sites

use JOIN would make the query faster

[!--sql--][div class=\'sqltop\']SQL[/div][div class=\'sqlmain\'][!--sql1--][span style=\'color:blue;font-weight:bold\']SELECT[/span] DISTINCT routes.name

FROM company JOIN routes ON company.name = routes.name

ORDER BY routes.name [!--sql2--][/div][!--sql3--]

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.