免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2255 | 回复: 5
打印 上一主题 下一主题

优化sql语句 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-03-27 11:02 |只看该作者 |倒序浏览
本帖最后由 zhengdl126 于 2010-03-27 11:07 编辑




表结构如上,就是书的章节表,我现在想实现的效果是找出每本书最后更新的一个章节(不需要内容字段content),并且按id倒序,只需要操作一这个表,不需要关联其它表,

以下是本人写的sql,效率似乎都很低。

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 GROUP BY b_id order by 1 desc )

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_time FROM `maos_book_ext` ORDER BY id DESC ) T GROUP BY  b_id ORDER BY id DESC


还想请教,如何比较两条sql 执行的时间更快

论坛徽章:
9
每日论坛发贴之星
日期:2016-01-04 06:20:00数据库技术版块每日发帖之星
日期:2016-01-04 06:20:00每日论坛发贴之星
日期:2016-01-04 06:20:00数据库技术版块每日发帖之星
日期:2016-01-04 06:20:00IT运维版块每日发帖之星
日期:2016-01-04 06:20:00IT运维版块每日发帖之星
日期:2016-01-04 06:20:00综合交流区版块每日发帖之星
日期:2016-01-04 06:20:00综合交流区版块每日发帖之星
日期:2016-01-04 06:20:00数据库技术版块每周发帖之星
日期:2016-03-07 16:30:25
2 [报告]
发表于 2010-03-27 11:53 |只看该作者
别用in,用表连接试试?

  1. select id, b_id, b_name, title, subtitle, chapter, sort, c_time, u_time from maos_book_ext a
  2. join
  3. (SELECT max( id ) FROM maos_book_ext GROUP BY b_id order by 1 desc ) b
  4. where a.id=b.id
复制代码
顺便贴一下explain的结果

论坛徽章:
0
3 [报告]
发表于 2010-03-27 14:49 |只看该作者
这个表有30多万数据,效率还是有点低

论坛徽章:
0
4 [报告]
发表于 2010-04-03 13:55 |只看该作者
本帖最后由 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)

论坛徽章:
0
5 [报告]
发表于 2010-04-04 10:59 |只看该作者
回复 1# zhengdl126


    id 和 b_id建索引了吗?应该不会这么慢啊
   
   先看看执行那个子查询用了多长时间

论坛徽章:
0
6 [报告]
发表于 2010-04-04 17:45 |只看该作者
没看懂。。。  

有点迷糊。。。

给的数据,最好能详细些
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP