I have a query with execution plan as below and is taking more than 20 seconds to execute how can i optimize it
EXPLAIN SELECT c.coupon_id as c_id, `c` . *, `st`.`name` AS `store` FROM `coupon` AS `c` LEFT JOIN `store` AS `st` ON st.store_id = c.store_id GROUP BY `c`.`coupon_id` ORDER BY `c`.`created` desc LIMIT 100 OFFSET 100;
+----+-------------+-------+--------+---------------+-------------+---------+-----------------------+------+-----------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+--------+---------------+-------------+---------+-----------------------+------+-----------------+
| 1 | SIMPLE | c | index | NULL | idx_created | 5 | NULL | 200 | Using temporary |
| 1 | SIMPLE | st | eq_ref | PRIMARY | PRIMARY | 4 | sonicdevel.c.store_id | 1 | |
+----+-------------+-------+--------+---------------+-------------+---------+-----------------------+------+-----------------+
2 rows in set (0.02 sec)
INDEXES
mysql> SHOW INDEX FROM coupon;
+--------+------------+-------------------+--------------+---------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+--------+------------+-------------------+--------------+---------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| coupon | 0 | PRIMARY | 1 | coupon_id | A | 219557 | NULL | NULL | | BTREE | | |
| coupon | 1 | store_id | 1 | store_id | A | 16889 | NULL | NULL | | BTREE | | |
| coupon | 1 | coupon_fid | 1 | coupon_fid | A | 219557 | NULL | NULL | | BTREE | | |
| coupon | 1 | name | 1 | name | A | 219557 | NULL | NULL | | BTREE | | |
| coupon | 1 | idx_expiry_date | 1 | expiry_date | A | 12915 | NULL | NULL | YES | BTREE | | |
| coupon | 1 | idx_created | 1 | created | A | 219557 | NULL | NULL | YES | BTREE | | |
| coupon | 1 | idx_seo_url | 1 | seo_url | A | 219557 | NULL | NULL | | BTREE | | |
| coupon | 1 | idx_start_date | 1 | start_date | A | 43911 | NULL | NULL | YES | BTREE | | |
| coupon | 1 | idx_todays_coupon | 1 | todays_coupon | A | 6 | NULL | NULL | YES | BTREE | | |
| coupon | 1 | idx_counter | 1 | counter | A | 63 | NULL | NULL | YES | BTREE | | |
| coupon | 1 | front_page | 1 | front_page | A | 218 | NULL | NULL | | BTREE | | |
| coupon | 1 | idx_approved | 1 | approved | A | 218 | NULL | NULL | YES | BTREE | | |
+--------+------------+-------------------+--------------+---------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
SHOW INDEX FROM store;
+-------+------------+-------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+-------+------------+-------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| store | 0 | PRIMARY | 1 | store_id | A | 5237 | NULL | NULL | | BTREE | | |
| store | 0 | fid | 1 | store_fid | A | NULL | NULL | NULL | YES | BTREE | | |
| store | 1 | top_store | 1 | top_store | A | 1 | NULL | NULL | YES | BTREE | | |
| store | 1 | name | 1 | name | A | 5237 | NULL | NULL | | BTREE | | |
| store | 1 | idx_seo_url | 1 | seo_url | A | 5237 | NULL | NULL | | BTREE | | |
| store | 1 | idx_status | 1 | status | A | 1 | NULL | NULL | | BTREE | | |
| store | 1 | name_2 | 1 | name | NULL | 1 | NULL | NULL | | FULLTEXT | | |
| store | 1 | name_2 | 2 | tags | NULL | 1 | NULL | NULL | YES | FULLTEXT | | |
| store | 1 | name_2 | 3 | short_desc | NULL | 1 | NULL | NULL | YES | FULLTEXT | | |
| store | 1 | name_2 | 4 | long_desc | NULL | 1 | NULL | NULL | YES | FULLTEXT | | |
+-------+------------+-------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+