Heim >Datenbank >MySQL-Tutorial >数据库常用不使用索引情况

数据库常用不使用索引情况

WBOY
WBOYOriginal
2016-06-07 14:53:581521Durchsuche

数据库常用不使用索引情况 1.使用,!=,^= 不使用索引可以使用 in or 或重写 www.2cto.com 2.is null不使用索引避免方法是定义成非空或者有默认值 通过默认值检索 3.is not null 如果大多数值都是空 非常高效 4.使用函数将禁用索引 5.仅当like以%开头时使用btr


数据库常用不使用索引情况

 

1.使用,!=,^= 不使用索引可以使用 in or 或>重写 

  www.2cto.com  

2.is null不使用索引避免方法是定义成非空或者有默认值 通过默认值检索 

 

3.is not null 如果大多数值都是空 非常高效 

 

4.使用函数将禁用索引 

 

5.仅当like以%开头时使用btree索引

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn