免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: scc_166
打印 上一主题 下一主题

slow.log中记录的全是一条语句,请教优化方法 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-10-17 07:13 |只看该作者
原帖由 猪知猪之道 于 2008-10-16 22:58 发表


sql 要效率高,主要的就是索引,要好好掌握。像你这样只有 0和1的数据列上用索引是没有什么效果的



你错了,效果是有的~

论坛徽章:
1
双子座
日期:2013-08-19 14:56:16
12 [报告]
发表于 2008-10-17 15:14 |只看该作者
原帖由 yueliangdao0608 于 2008-10-17 07:13 发表



你错了,效果是有的~

表达错误,我更正一下, 我意思是说,效果不怎么样了

论坛徽章:
0
13 [报告]
发表于 2008-10-19 20:44 |只看该作者
那个语句可以用下面的来替代,
速度方面应该有些提高。

select A.id,title,content,A.uid,url,B.CC From
data A,
(select uid,count(*) as CC , min(id) mid
From data where status =1
group by uid ) B
where A.id= B.mid
Order by A.sr ;

另外 试试下面哪个索引 起作用,
create index stall on data(status,uid,id) ;
create index uidsta on data(uid,id,status) ;

我简单构造的2万条数据是 第二个索引有效,可能是数据问题。
现在看 执行时间从 2秒到 0.3 秒了。

+----+-------+-----------+------+-------+------------+
| id | title | content   | uid  | url   | count(uid) |
+----+-------+-----------+------+-------+------------+
| 17 | t5    | content15 | us2  | url41 |      49152 |
| 49 | t13   | content23 | us3  | url14 |      16384 |
|  1 | t1    | content11 | us1  | url11 |     131072 |
+----+-------+-----------+------+-------+------------+
3 rows in set (2.21 sec)

mysql>
mysql>
mysql> select A.id,title,content,A.uid,url,B.CC From
    -> data A,
    -> (select uid,count(*) as CC , min(id) mid
    -> From data where status =1
    -> group by uid ) B
    -> where A.id= B.mid
    -> Order by A.sr desc ;
+----+-------+-----------+------+-------+--------+
| id | title | content   | uid  | url   | CC     |
+----+-------+-----------+------+-------+--------+
| 17 | t5    | content15 | us2  | url41 |  49152 |
| 49 | t13   | content23 | us3  | url14 |  16384 |
|  1 | t1    | content11 | us1  | url11 | 131072 |
+----+-------+-----------+------+-------+--------+
3 rows in set (0.38 sec)

mysql>
mysql>
mysql>
mysql>
mysql> explain select id,title,content,uid,url,count(uid)
    -> from data where status=1
    -> group by uid order by sr desc ;
+----+-------------+-------+-------+---------------+--------+---------+------+--------+----------------------------------------------+
| id | select_type | table | type  | possible_keys | key    | key_len | ref  | rows   | Extra                                        |
+----+-------------+-------+-------+---------------+--------+---------+------+--------+----------------------------------------------+
|  1 | SIMPLE      | data  | index | stall         | uidsta | 54      | NULL | 213204 | Using where; Using temporary; Using filesort |
+----+-------------+-------+-------+---------------+--------+---------+------+--------+----------------------------------------------+
1 row in set (0.00 sec)

mysql>
mysql>
mysql> explain select A.id,title,content,A.uid,url,B.CC From
    -> data A,
    -> (select uid,count(*) as CC , min(id) mid
    -> From data where status =1
    -> group by uid ) B
    -> where A.id= B.mid
    -> Order by A.sr desc ;
+----+-------------+------------+--------+---------------+---------+---------+-------+--------+---------------------------------+
| id | select_type | table      | type   | possible_keys | key     | key_len | ref   | rows   | Extra                           |
+----+-------------+------------+--------+---------------+---------+---------+-------+--------+---------------------------------+
|  1 | PRIMARY     | <derived2> | ALL    | NULL          | NULL    | NULL    | NULL  |      3 | Using temporary; Using filesort |
|  1 | PRIMARY     | A          | eq_ref | PRIMARY       | PRIMARY | 8       | B.mid |      1 |                                 |
|  2 | DERIVED     | data       | index  | stall         | uidsta  | 54      | NULL  | 213204 | Using where; Using index        |
+----+-------------+------------+--------+---------------+---------+---------+-------+--------+---------------------------------+
3 rows in set (0.32 sec)



mysql> show create table data \G;
*************************** 1. row ***************************
       Table: data
Create Table: CREATE TABLE `data` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `title` varchar(20) DEFAULT NULL,
  `content` varchar(200) DEFAULT NULL,
  `uid` varchar(10) DEFAULT NULL,
  `url` varchar(100) DEFAULT NULL,
  `status` varchar(10) DEFAULT NULL,
  `sr` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `stall` (`status`,`uid`,`id`),
  KEY `uidsta` (`uid`,`id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=851966 DEFAULT CHARSET=cp932
1 row in set (0.00 sec)

ERROR:
No query specified

[ 本帖最后由 jb96_xlwang 于 2008-10-19 20:51 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP