Table of Contents
mysql索引与优化
简要:
一、索引是什么
二、索引类型及使用语法
三、全文索引说明
一、索引是什么
二、索引类型及使用语法
Home Database Mysql Tutorial 小贝_mysql索引学习与优化_MySQL

小贝_mysql索引学习与优化_MySQL

Jun 01, 2016 pm 12:59 PM
index

mysql索引与优化

简要:

一、索引是什么

二、索引类型及使用语法

三、全文索引说明

一、索引是什么

1、以书的目录为例,通过查看目录,再找到对应的内容。因此,索引就是给数据加上了’目录’,便于快速找到数据

2、索引的作用:

好处: 加快了查询速度

坏处: a、降低了增删改的速度

b、增大了表的文件大小(索引文件甚至可能比数据文件还大)

案例: 设有某个表15列,存在10列上有索引,共500w行数据,如何快速导入?

答: 1、把空表的索引全部删除 2、导入数据 3、数据导入完毕后再建立索引

3、索引算法

设有N条随机记录,不用索引,平均查找N/2次,用了索引呢?

3.1、二叉树索引对应次数为log2N次

说明例子,数据1,2,3,4,5,6,7,以中间值4为分界点

4

2 6

1 3 5 7

查找3需要多少次?

由于32,因此在以2为根节点的右边。结果需要2次

3.2、哈希索引,理论上为1次

说明例子,数据1,2,3,4,5,6,7

hash[1]=001

hash[2]=003

hash[3]=005

hash[4]=007

hash[5]=009

hash[6]=011

hash[7]=013

查找3需要多少次?

先hash下,得到005,这样就找到了。刚好1次。

hash的不足:

a、浪费空间,因为hash的值不连续。

b、hash要求高,确保每个值的hash值不同

4、索引的使用原则

a、不过度索引

b、索引条件列(where后面最频繁的条件比较适宜索引)

c、索引散列值,过于集中的值不要索引(如: 性别)

5、如何看表结构

5.1、存储引擎为myisam

\

frm为表结构、MYD为数据文件、MYI为索引文件

5.2、存储引擎为innodb

\

frm为表结构、ibd为数据文件和索引文件

 

二、索引类型及使用语法

1、类型

a、普通索引(index): 仅仅是加快查询速度

b、唯一索引(unique index): 行上的值不能重复

c、主键索引(primary key): 不能重复

d、全文索引(fulltext index):

唯一索引和主键索引的关系:

主键必唯一,但是唯一索引不一定是主键;一张表上只能有一个主键,但是可以有一个或多个唯一索引

2、如何查看表中的索引

\

3、建立索引

3.1、对已经存在的表建立索引

语法: alter table 表名 add index/uniqueindex/fulltext index/primary key [索引名](列名) (备注:索引名可选,不指定则与列名相同)

表结构:

create table m( id int, emailvarchar(30),tel char(11), intro text)engine=myisam charset=utf8;

\

 

a、给tel列建立普通索引

 

\

(备注: 指定索引名与列名相同)

 

\

b、给email列加上唯一索引

\

 

c、给intro列加上全文索引

\

 

d、给id列加上主键索引

 

\

e、加上多列组合索引

\

 

(备注: 这个普通索引m作用在列email和tel列上)

\

 

错误点:

\

错误原因: 没有指定该索引应用在那个列上。

3.2、建立新表时,指定索引

create table m(id int primary keyauto_increment, email varchar(30), tel char(11), intro text, index(tel), uniqueindex(email), fulltext index(intro) )engine=myisam charset=utf8;

 

4、删除索引

4.1、删除普通索引/唯一索引/全文索引

\

 

4.2、删除主键索引

如果主键列本身就是自增的,则删除时会报错

\

 

这个情况,应该先修改列的自增属性。

\

 

三、全文索引

全文索引在mysql的默认情况下,对于中文意义不大

因为英文有空格,标点符号来拆成单词,进而对单词进行索引。

而对于中文,没有空格来隔开单词。mysql无法识别每个中文词。

用法: match(全文索引名) against(‘keyword’);

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to fix 100% disk usage on Windows 11 How to fix 100% disk usage on Windows 11 Apr 20, 2023 pm 12:58 PM

How to Fix 100% Disk Usage on Windows 11 The straightforward way to find the problematic application or service causing 100% disk usage is to use Task Manager. To open Task Manager, right-click on the Start menu and select Task Manager. Click the Disk column header to see what's using the most resources. From there, you'll have a good idea of ​​where to start. However, the problem may be more serious than simply closing an application or disabling a service. Read on to find more potential causes of problems and how to fix them. Disabling SuperfetchSuperfetch feature (also known as SysMain in Windows 11) helps reduce startup time by accessing prefetch files

How to hide files and folders and remove them from search in Windows 11? How to hide files and folders and remove them from search in Windows 11? Apr 26, 2023 pm 11:07 PM

<h2>How to Hide Files and Folders from Search on Windows 11</h2><p>The first thing we need to look at is customizing the location of Windows Search files. By skipping these specific locations, you should be able to see results faster while also hiding any files you want to protect. </p><p>If you want to exclude files and folders from searches on Windows 11, use the following steps: </p><ol&

Here are 6 ways to fix Windows 11 search bar not available. Here are 6 ways to fix Windows 11 search bar not available. May 08, 2023 pm 10:25 PM

If your search bar isn't working in Windows 11, there are a few quick ways to get it up and running in no time! Any Microsoft operating system can experience glitches from time to time, and the latest operating systems are not exempt from this rule. Additionally, as pointed out by user u/zebra_head1 on Reddit, the same error appears on Windows 11 with 22H2Build22621.1413. Users complained that the option to toggle the taskbar search box randomly disappeared. Therefore, you must be prepared for any situation. Why can't I type in the search bar on my computer? The inability to type on the computer can be attributed to different factors and processes. Here are some things you should be aware of: Ctfmon.

What are the Oracle index types? What are the Oracle index types? Nov 16, 2023 am 09:59 AM

Oracle index types include: 1. B-Tree index; 2. Bitmap index; 3. Function index; 4. Hash index; 5. Reverse key index; 6. Local index; 7. Global index; 8. Domain index ; 9. Bitmap connection index; 10. Composite index. Detailed introduction: 1. B-Tree index is a self-balancing tree data structure that can efficiently support concurrent operations. In Oracle database, B-Tree index is the most commonly used index type; 2. Bit Graph index is an index type based on bitmap algorithm and so on.

Windows 11 Outlook Search Not Working: 6 Fixes Windows 11 Outlook Search Not Working: 6 Fixes Apr 22, 2023 pm 09:46 PM

Run the Search and Indexing Troubleshooter in Outlook One of the more straightforward fixes you can start is to run the Search and Indexing Troubleshooter. To run the troubleshooter on Windows 11: Click the Start button or press the Windows key and select Settings from the menu. When Settings opens, select System > Troubleshooting > Additional Troubleshooting. Scroll down on the right side, find SearchandIndexing and click the Run button. Select Outlook Search to return no results and continue with the on-screen instructions. When you run it, the troubleshooter will automatically identify and fix the problem. After running the troubleshooter, open Outlook and see if the search is working properly. like

How to solve the problem that the index exceeds the array limit How to solve the problem that the index exceeds the array limit Nov 15, 2023 pm 05:22 PM

The solutions are: 1. Check whether the index value is correct: first confirm whether your index value exceeds the length range of the array. The index of the array starts from 0, so the maximum index value should be the array length minus 1; 2. Check the loop boundary conditions: If you use the index for array access in a loop, make sure the loop boundary conditions are correct; 3. Initialize the array: Before using an array, make sure that the array has been initialized correctly; 4. Use exception handling: You can use the exception handling mechanism in the program to catch errors where the index exceeds the bounds of the array, and handle it accordingly.

How to improve the efficiency of data grouping and data aggregation in PHP and MySQL through indexes? How to improve the efficiency of data grouping and data aggregation in PHP and MySQL through indexes? Oct 15, 2023 am 11:39 AM

How to improve the efficiency of data grouping and data aggregation in PHP and MySQL through indexes? Introduction: PHP and MySQL are currently the most widely used programming languages ​​and database management systems, and are often used to build web applications and process large amounts of data. Data grouping and data aggregation are common operations when processing large amounts of data, but if indexes are not designed and used appropriately, these operations can become very inefficient. This article will introduce how to use indexes to improve the efficiency of data grouping and data aggregation in PHP and MySQL, and improve

Advanced applications of Python slicing and indexing: reveal hidden functions and explore the infinite possibilities of programming Advanced applications of Python slicing and indexing: reveal hidden functions and explore the infinite possibilities of programming Feb 19, 2024 pm 08:40 PM

The basic syntax of slicing in Python is to use the [start:end:step] syntax for slicing operations, where start represents the starting position of the slice, end represents the end position of the slice, and step represents the slicing step. If start is omitted, it means slicing from the beginning of the list or string; if end is omitted, it means slicing to the end of the list or string; if step is omitted, it means the step size is 1. For example: my_list=[1,2,3,4,5]#Cut from the 2nd element to the 4th element (excluding the 4th element) sub_list=my_list[1:4]#[2,3,4 ]#Start from the first element until the end of the list sub_li

See all articles