A quick guide to MySQL indexes

A quick guide to MySQL indexes

The establishment of MySQL index is very important for the efficient operation of MySQL. Index can greatly improve the retrieval speed of MySQL.

To use an analogy, if MySQL with a proper design and indexes is a Lamborghini, then MySQL without an index is a human-powered tricycle.

Indexes are divided into single-column indexes and composite indexes. A single-column index is an index that contains only a single column. A table can have multiple single-column indexes, but these are not composite indexes. Composite index, that is, an index contains multiple columns.

When creating an index, you need to ensure that the index is applied to the SQL query statement (usually as a condition of the WHERE clause).

In fact, the index is also a table that stores the primary key and index fields and points to the records of the entity table.

The above all talks about the benefits of using indexes, but excessive use of indexes will lead to abuse. Therefore, indexes also have their disadvantages: although indexes greatly improve query speed, they also reduce the speed of updating tables, such as INSERT, UPDATE, and DELETE. Because when updating a table, MySQL not only needs to save the data, but also the index file.

Building an index takes up disk space for index files.

Normal index

Create Index

This is the most basic index and it has no restrictions. It can be created in the following ways:

CREATE INDEX indexName ON mytable(username(length));

If it is CHAR or VARCHAR type, length can be smaller than the actual length of the field; if it is BLOB or TEXT type, length must be specified.

Modify table structure

ALTER mytable ADD INDEX [indexName] ON (username(length))

Specify directly when creating a table

CREATE TABLE mytable( 
 
ID INT NOT NULL, 
 
username VARCHAR(16) NOT NULL, 
 
INDEX [indexName] (username(length)) 
 
);

Syntax to delete an index

DROP INDEX [indexName] ON mytable;

Unique Index

It is similar to the previous ordinary index, except that the values ​​of the index column must be unique, but null values ​​are allowed. If it is a composite index, the combination of column values ​​must be unique. It can be created in the following ways:

Create Index

CREATE UNIQUE INDEX indexName ON mytable(username(length))

Modify table structure

ALTER mytable ADD UNIQUE [indexName] ON (username(length))

Specify directly when creating a table

CREATE TABLE mytable( 
 
ID INT NOT NULL, 
 
username VARCHAR(16) NOT NULL, 
 
UNIQUE [indexName] (username(length)) 
 
);

Adding and dropping indexes using the ALTER command

There are four ways to add indexes to a table:

  • ALTER TABLE tbl_name ADD PRIMARY KEY (column_list): This statement adds a primary key, which means that the index value must be unique and cannot be NULL.
  • ALTER TABLE tbl_name ADD UNIQUE index_name (column_list): This statement creates an index whose values ​​must be unique (except NULL, which may appear multiple times).
  • ALTER TABLE tbl_name ADD INDEX index_name (column_list): Add a normal index. The index value can appear multiple times.
  • ALTER TABLE tbl_name ADD FULLTEXT index_name (column_list): This statement specifies the index as FULLTEXT for full-text indexing.

The following example adds an index to a table.

mysql> ALTER TABLE testalter_tbl ADD INDEX (c);

You can also remove indexes using the DROP clause in the ALTER command. Try the following example to delete the index:

mysql> ALTER TABLE testalter_tbl DROP INDEX (c);

Use the ALTER command to add and delete primary keys

A primary key can only be applied to one column. When adding a primary key index, you need to ensure that the primary key is not empty (NOT NULL) by default. The following are examples:

mysql> ALTER TABLE testalter_tbl MODIFY i INT NOT NULL;
mysql> ALTER TABLE testalter_tbl ADD PRIMARY KEY (i);

You can also delete a primary key using the ALTER command:

mysql> ALTER TABLE testalter_tbl DROP PRIMARY KEY;

When deleting a key, you only need to specify the PRIMARY KEY, but when deleting an index, you must know the index name.

Display index information

You can use the SHOW INDEX command to list the relevant index information in the table. You can format the output by adding \G.

Try the following examples:

mysql> SHOW INDEX FROM table_name\G
........

The above is a quick introduction to the details of MySQL indexes. For more information about MySQL indexes, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Summary of knowledge points about covering index in MySQL
  • Detailed explanation of MySQL InnoDB index extension
  • MySQL performance optimization: how to use indexes efficiently and correctly
  • Basic syntax of MySQL index
  • Detailed explanation of MySQL combined index method
  • An article to master MySQL index query optimization skills
  • Mysql index types and basic usage examples
  • Detailed explanation of the underlying implementation of descending index, a new feature of MySQL 8
  • Which is faster among MySQL full-text index, joint index, like query, and json query?
  • How to use MySQL covering index and table return
  • Various types of MySQL indexes

<<:  MySQL scheduled backup solution (using Linux crontab)

>>:  How to use Gitlab-ci to continuously deploy to remote machines (detailed tutorial)

Recommend

How to install MySQL 8.0.17 and configure remote access

1. Preparation before installation Check the data...

One-click installation of MySQL 5.7 and password policy modification method

1. One-click installation of Mysql script [root@u...

Comparison between Redis and Memcache and how to choose

I've been using redis recently and I find it ...

Discussion on horizontal and vertical centering of elements in HTML

When we design a page, we often need to center th...

What does mysql database do?

MySQL is a relational database management system....

Vue implements a complete process record of a single file component

Table of contents Preface Single file components ...

WeChat applet implements a simple handwritten signature component

Table of contents background: need: Effect 1. Ide...

Analysis of Sysbench's benchmarking process for MySQL

Preface 1. Benchmarking is a type of performance ...

Web Design TabIndex Element

TabIndex is to press the Tab key to sequentially o...

Solutions to Files/Folders That Cannot Be Deleted in Linux

Preface Recently our server was attacked by hacke...

Vue component encapsulates sample code for uploading pictures and videos

First download the dependencies: cnpm i -S vue-uu...

Briefly describe the difference between Redis and MySQL

We know that MySQL is a persistent storage, store...

Introducing ECharts into the Vue project

Table of contents 1. Installation 2. Introduction...