MySQL advanced learning index advantages and disadvantages and rules of use

MySQL advanced learning index advantages and disadvantages and rules of use

1. Advantages and Disadvantages of Indexes

Advantages: fast retrieval, faster grouping and sorting

Disadvantages: Occupies storage space and reduces data table modification operations

2. Classification of Indexes

Primary key index That is, the primary index is created based on the primary key pk_clolum (length), and duplicates and null values ​​are not allowed.
Unique Index The values ​​of the columns used to create the index must be unique, and null values ​​are allowed.
Normal index An index built with normal columns in a table, without any restrictions
Full-text index Index built on columns of large text objects
Full-text index Indexes built with columns of large text objects;
Composite Index An index built using multiple columns. The values ​​in these columns do not allow null values.

3. Rules for using indexes

1. Situations suitable for indexing

  • The primary key automatically creates a unique index;
  • Columns that often appear as query conditions in WHERE or ORDER BY statements should be indexed;
  • The column to be sorted needs to be indexed;
  • The fields and foreign key relationships associated with other tables in the query are indexed;
  • Prefer combined indexes under high concurrency conditions;
  • Columns used for aggregate functions can be indexed. For example, column_1 needs to be indexed when max(column_1) or count(column_1) is used.

2. Situations where indexing is not suitable

  • Do not create indexes for columns that are frequently added, deleted, or modified;
  • There are a lot of repeated columns that are not indexed;
  • Do not create an index if the table has too few records.

3. Index failure

  • There cannot be a NULL value in a composite index. If there is, then this column is invalid for the composite index.
  • In the LIKE operation, '%aaa%' will not use the index, that is, the index will be invalid, but 'aaa%' can use the index;
  • Using expressions or functions on indexed columns will invalidate the index;
  • Use not equal to in the query condition, including the < symbol, > symbol and ! = will cause the index to fail;
  • Using IS NULL or IS NOT NULL in the query condition will cause the index to become invalid;
  • If the string is not enclosed in single quotes, the index will be invalid;
  • Using OR to connect multiple conditions in a query will cause the index to fail unless each condition linked by OR is indexed;
  • If the sorting field uses an index, the selected field must also be an index field, otherwise the index will be invalid;
  • Try not to include multi-column sorting; if you must, it is best to build a composite index for the queue.

4. SQL about index

1. Add index when creating table

-- Add an index when creating a table -- INDEX keyword -- myindex Index name you choose yourself -- (username(16)) to which column to add it CREATE TABLE mytable(
 ID INT NOT NULL,
 username VARCHAR(16) NOT NULL,
 INDEX myindex (username(16))
);

2. Add index after creating table

-- Add index -- myindex index name (self-defined)
-- mytable table name CREATE INDEX myindex ON mytable(username(16));
or ALTER TABLE mytable ADD INDEX myindex(username);

3 View index

-- mytable table name show index FROM mytable;

4. Delete index

-- myindex index name (self-defined)
-- mytable table name DROP INDEX myindex ON mytable;
or ALTER TABLE mytable DROP INDEX myindex;

Summarize

This is the end of this article about the advantages and disadvantages of indexing and the use of rules for advanced MySQL learning. For more relevant MySQL advanced indexing content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • mysql add index mysql how to create index
  • MySQL index type summary and usage tips and precautions
  • How to view, create and delete indexes in MySQL
  • MySQL Create Index method, syntax structure and examples
  • MySQL performance optimization index optimization
  • Analysis of several situations where Mysql indexes fail
  • Analysis of the connection and difference between MySQL primary key and index
  • In-depth understanding based on MySQL full-text index
  • Solve the problem that IN subquery in MySQL will cause the index to be unusable
  • MySQL index analysis and optimization

<<:  Example of how to modify styles via CSS variables

>>:  A brief discussion on the problem of Docker run container being in created state

Recommend

CSS Transition expands and collapses elements by changing the Height

A common development need is that we want to coll...

jQuery canvas draws picture verification code example

This article example shares the specific code of ...

How to install SVN server under Linux

1. Yum installation yum install subversion 2. Con...

How to use less in WeChat applet (optimal method)

Preface I am used to writing less/sass, but now I...

A guide to writing flexible, stable, high-quality HTML and CSS code standards

The Golden Rule Always follow the same set of cod...

MySQL table return causes index invalidation case explanation

Introduction When the MySQL InnoDB engine queries...

js to implement file upload style details

Table of contents 1. Overview 2. Parameters for c...

How to use the WeChat Mini Program lottery component

It is provided in the form of WeChat components. ...

Detailed tutorial on installing Python 3.6.6 from scratch on CentOS 7.5

ps: The environment is as the title Install possi...

Detailed explanation of how to use Teleport, a built-in component of Vue3

Table of contents 1. Teleport usage 2. Complete t...

JavaScript typing game

This article shares the specific code of JavaScri...

Detailed explanation of MySQL date addition and subtraction functions

1. addtime() Add the specified number of seconds ...

Docker deployment and installation steps for Jenkins

First, we need a server with Docker installed. (I...