mysql大数据查询优化

如这个查询在1M条记录,1.5g数据库内存情况下相当慢,大概20s以上

select id,title from articles order by rank desc limit 12222,34;

但是拆分成如下查询只要2秒:

select title from articles where id in (select * from (select id from articles order by rank desc limit 312212,34 ) as b);

优化成这个样子只要1秒:

select title from articles as a,(select id from articles order by rank desc limit 512212,34 ) as b where a.id=b.id;

在大数据时,数据库表设计上应该就是拆分表,多用小表做查询,查到后再去查存数据的大表

本文出自 “Linux运维” 博客,请务必保留此出处http://2853725.blog.51cto.com/2843725/1386583

mysql大数据查询优化,布布扣,bubuko.com

mysql大数据查询优化

上一篇:时间:2014年3月23日 mySQL建表过程与字符类型意义


下一篇:线上环境部署MongoDB的官方建议