views:

105

answers:

2
+1  A: 

Entity.strict or Article.state are not indexed. Use EXPLAIN before your SELECT statement and check which tables are being fully scanned. That will hint what needs indexing.

Mihalj
Both are indexed
Lizard
What indexes do you have on each table, and what does EXPLAIN tell you?
Mark Baker
See update at bottom opf question
Lizard
+1  A: 

do you really need the left join?! imho your query should get a boost without it ;)

Oliver