I've read on some blogs and in some articles related to optimization, how to optimize queries. I read I need to use indexes and make sure all my primary key and foreign keys are set correctly using a good relational database schema.
Now I have a query I need to optimize and I get this on the EXPLAIN
:
Using where; Using temporary; Using filesort
I am using MySQL 5.5
I know I am using WHERE
but not with my temporary table nor filesort? What does this mean?