> 데이터 베이스 > MySQL 튜토리얼 > Mysql SQL性能优化之order_MySQL

Mysql SQL性能优化之order_MySQL

WBOY
풀어 주다: 2016-06-01 13:36:16
원래의
978명이 탐색했습니다.

bitsCN.com

Mysql SQL性能优化之order

 

mysql的order在排序时,会被select出来的数据多少所影响,

数据列越多,排序越慢,为了说明这个问题,请看几个例子。

高效的查询

低性能:

 

select id,job_name from test_results where id

1 rows fetched (390 ms)

 

高性能:

 

select id,job_name from test_results where id =(select id from test_results where id

1 rows fetched (281 ms)

 

高效的分页查询  www.bitsCN.com  

低性能:

 

select id,job_name from test_results order by id desc limit 1200000,100;

100 rows fetched (34.616 sec)

 

高性能:

 

select id,job_name from test_results join (select id from test_results order by id desc limit 1300000,100) as t2 using(id);

100 rows fetched (5.460 sec)

 

接下来我们分析其原因,首先从mysql的执行顺序开始讲起,

执行顺序从上到下:

FROM

ON

JOIN

WHERE

GROUP BY

HAVING

SELECT

DISTINCT

ORDER BY

 

所以得出结论,select出来的数据越多,排序越慢。

减少了order by中的排序数据,再去join或者=查询即可加快执行效率。

 

bitsCN.com
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿