If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > max tables per query? mysql and multi-table queries?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-09-04, 20:11
DrSmartman DrSmartman is offline
Registered User
 
Join Date: Aug 2003
Location: Reston, VA
Posts: 59
max tables per query? mysql and multi-table queries?

hello all,

i just got a big dump from SQL Server and need to pull out data from about 11 tables in one query. Problem is that when I run the query in MySQL it never finishes (I only waited about 15 minutes!). Anyway, my question is if there is a maximum number of tables allowed in one query? is there an unofficial limit i should stick to? any advice is helpful.

i know mysql is real quick when it comes to single table searches, but i can't even pull out the data i need. is this a job better suited to another db? is my query written bad?

this is a slimmed down version of the query only using 4 tables. What is going on? i am using a myisam table.

any help is appreciated. Many thanks!!!!!

(i used join syntax also, but this should work)
SELECT PhotoCollection.CollectionName, Contributor.FirstName, Photo.rawFileName FROM PhotoCollection,PhotoCollectionLK,Contributor,Phot o WHERE PhotoCollection.CollectionID=PhotoCollectionLK.Pho toCollectionID AND Photo.PhotoID=PhotoCollectionLK.PhotoID AND Contributor.ContributorID=Photo.ContributorID;
Reply With Quote
  #2 (permalink)  
Old 08-10-04, 00:04
DrSmartman DrSmartman is offline
Registered User
 
Join Date: Aug 2003
Location: Reston, VA
Posts: 59
update...

i used a conversion script and it didn't appear to conver the indexes. that would probably do it huh. anyway, consider this a "case closed" unless there are further comments. i always figure this stuff after posting thanks!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On