mysql> explain SELECT id FROM multimedia WHERE approved='1' and city ='5' order by id limit 0,15;
+----+-------------+------------+------+---------------+--------------+---------+-------------+------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------+------+---------------+--------------+---------+-------------+------+-----------------------------+
| 1 | SIMPLE | multimedia | ref | approved | aproved | 4 | const,const | 1479 | Using where; Using filesort |
+----+-------------+------------+------+---------------+--------------+---------+-------------+------+-----------------------------+
1) "id" is the primary key
2) I have index on both 2 columns - "approved" and "city".
Any ideas?