- 论坛徽章:
- 0
|
那个语句可以用下面的来替代,
速度方面应该有些提高。
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 编辑 ] |
|