From: Dan Nelson Date: December 19 2002 4:19am Subject: Re: really slow query results --- SOLVED List-Archive: http://lists.mysql.com/mysql/127919 Message-Id: <20021219041930.GA54615@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In the last episode (Dec 19), Joseph Dietz said: > Someone helped me solve the problem with my slow query results! I was > missing the index which I should have added to my cross reference > tables.. AND I should have used the INNER JOIN clause instead of > joining my table with the WHERE clause. In the future I will be far > more careful designing my queries. INNER JOIN and WHERE do the same thing: * `INNER JOIN' and `,' (comma) are semantically equivalent. Both do a full join between the tables used. Normally, you specify how the tables should be linked in the WHERE condition. -- Dan Nelson dnelson@stripped