- 论坛徽章:
- 0
|
本帖最后由 zhengdl126 于 2010-04-03 14:56 编辑
下面三条语句在页面执行的时候,都很慢,页面有时还会卡死,请问还有别的sql吗?
mysql> explain select id, b_id, b_name, title, subtitle, chapter, sort, c_time,u
_time from maos_book_ext where id in (SELECT max( id ) FROM maos_book_ext where
chapter=0 GROUP BY b_id order by 1 desc ) limit 0,30;
+----+--------------------+---------------+-------+---------------+-----------+-
--------+------+-------+-----------------------------+
| id | select_type | table | type | possible_keys | key |
key_len | ref | rows | Extra |
+----+--------------------+---------------+-------+---------------+-----------+-
--------+------+-------+-----------------------------+
| 1 | PRIMARY | maos_book_ext | ALL | NULL | NULL |
NULL | NULL | 91636 | Using where |
| 2 | DEPENDENT SUBQUERY | maos_book_ext | index | NULL | Index_bid |
4 | NULL | 91636 | Using where; Using filesort |
+----+--------------------+---------------+-------+---------------+-----------+-
--------+------+-------+-----------------------------+
2 rows in set (0.48 sec)
mysql> explain select id, b_id, b_name, title, subtitle, chapter, sort, c_time,u
_time from `maos_book_ext` a join (SELECT max( id ) as ssid FROM `maos_book_ext`
where chapter=0 GROUP BY b_id order by 1 desc ) b where a.id=b.ssid LIMIT 0 ,3
0;
+----+-------------+---------------+--------+---------------+---------+---------
+--------+-------+----------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len
| ref | rows | Extra |
+----+-------------+---------------+--------+---------------+---------+---------
+--------+-------+----------------------------------------------+
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL
| NULL | 345 | |
| 1 | PRIMARY | a | eq_ref | PRIMARY | PRIMARY | 4
| b.ssid | 1 | |
| 2 | DERIVED | maos_book_ext | ALL | NULL | NULL | NULL
| NULL | 91636 | Using where; Using temporary; Using filesort |
+----+-------------+---------------+--------+---------------+---------+---------
+--------+-------+----------------------------------------------+
3 rows in set (3.45 sec)
mysql> explain select id, b_id, b_name, title, subtitle, chapter, sort, c_time,u
_time from (select id, b_id, b_name, title, subtitle, chapter, sort, c_time,u_ti
me from `maos_book_ext` ORDER BY `b_id` DESC, `sort` DESC ) T where chapt
er=0 group by `b_id` limit 0,30;
+----+-------------+---------------+------+---------------+------+---------+----
--+-------+----------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref
| rows | Extra |
+----+-------------+---------------+------+---------------+------+---------+----
--+-------+----------------------------------------------+
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NUL
L | 91636 | Using where; Using temporary; Using filesort |
| 2 | DERIVED | maos_book_ext | ALL | NULL | NULL | NULL | NUL
L | 91636 | Using filesort |
+----+-------------+---------------+------+---------------+------+---------+----
--+-------+----------------------------------------------+
2 rows in set (4.13 sec) |
|