The following query is relatively slow (0.7 seconds with ~6k rows)
SELECT items.*, COUNT(transactions.ID)
FROM items
INNER JOIN users ON (items.USER = users.ID)
LEFT JOIN transactions ON (items.id = transactions.item)
WHERE items.ACTIVE = 1
AND items.DELETED_AT IS NULL
GROUP BY items.ID
ORDER BY items.DATE DESC
LIMIT 20
But speeds up dramatically when ordered by items.ID DESC instead of items.DATE. The transactions join is to a large table (~250k rows) and is one-to-many. The date column has an index.
Is there any way to generically improve the performance of the ORDER BY?
EDIT: indexes on items.user, transactions.item, and items.date. Items has 49 columns, users 76, and transactions 17.
items.DATEinGROUP BY(in the first position too)? – Andriy M Dec 25 '11 at 23:16