Home >Database >Mysql Tutorial >sql条件查询+排序

sql条件查询+排序

WBOY
WBOYOriginal
2016-06-07 16:21:101466browse

一条sql为: select * from user where gender='1' order by id desc; 加索引方式: 1:为gender添加索引 2:为id添加索引 3:为id和gender添加联合索引 事实证明 1是正确的,使用gender索引,这条sql索引级别达到const级别. 如果使用联合索引则达到了index级别 实

   一条sql为:

  select * from user where gender='1' order by id desc;

  加索引方式:

  1:为gender添加索引

  2:为id添加索引

  3:为id和gender添加联合索引

  事实证明

  1是正确的,使用gender索引,这条sql索引级别达到const级别.

  如果使用联合索引则达到了index级别

  实际上运行速度,数据库7w条数据情况下,查询前100条数据

  1:使用了0.07s

  2:使用了0.2+s

  因此,1方式的索引速度更快

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn