Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This query executes in a fraction of a second:

SELECT customers.customers_id, customers_firstname, customers_lastname, customers.customers_email_address, max(date_purchased) 
FROM customers join orders on customers.customers_id = orders.customers_id 
group by customers.customers_id;

If I change the join to a left join, it seems to hang. I tried limiting it to 10 records, and it still takes 9 seconds. What am I doing wrong?

Thanks in advance.

share|improve this question

2 Answers

up vote 2 down vote accepted

Do you have an index created on the join criterias?

Is customers_Id indexed on the orders table?

you can see if there are any indicies on the table with the following

SHOW INDEXES FROM Orders;

To create an index

CREATE INDEX ix_order_customersId ON Orders (customers_id);
share|improve this answer
This is usually the first thing you'll need to check, if there's no index then chances are its scanning through all records (which is slow). If you want more info on what is happening try running EXPLAIN on your query, see here: dev.mysql.com/doc/refman/5.1/en/explain.html – Dave Oct 6 '10 at 15:32
That was it. Thank you. – Jay Oct 6 '10 at 15:38
Just thinking about this, shouldn't there be a relationship between customer and order? i.e customers_id should be a foreign key constraint – clyc Oct 6 '10 at 15:43

for investigating the problem, you could try EXPLAIN SELECT ....., that will list you what are the indexes/cardinality of the request and why it is taking that much time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.