mysql sql语句求优化 [code=SQL]SELECT tid,count(*) as count FROM `pw_posts` WHERE fid=77 GROUP BY tid ORDER BY count DESC LIMIT 10 [/code] 其中tid ,fid分别有建了索引,表里有160万条数据,速度挺慢的,用explain显示如下 SIMPLE pw_posts ref fid fid 2 const 38112 Using where; Using temporary; Using filesort
------解决方案--------------------
------解决方案-------------------- 语句本身没有问题,但是设计可以改善
你应该先缓存数据 INSERT INTO `pw_posts_stat`(tid, fid, count) SELECT tid, fid, count(*) as count FROM `pw_posts` GROUP BY tid, fid
然后每次查询的时候就会很快了 SELECT tid, count FROM `pw_posts_stat` WHERE fid=77 ORDER BY count DESC LIMIT 10 SELECT tid, count FROM `pw_posts_stat` WHERE fid=77 ORDER BY count DESC LIMIT 11, 10
SELECT tid, count FROM `pw_posts_stat` WHERE fid=66 ORDER BY count DESC LIMIT 10
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.