1. Advantages and Disadvantages of IndexesAdvantages: fast retrieval, faster grouping and sorting Disadvantages: Occupies storage space and reduces data table modification operations 2. Classification of Indexes
3. Rules for using indexes1. Situations suitable for indexing
2. Situations where indexing is not suitable
3. Index failure
4. SQL about index1. 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; SummarizeThis 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:
|
<<: Example of how to modify styles via CSS variables
>>: A brief discussion on the problem of Docker run container being in created state
A common development need is that we want to coll...
MySql batch insert optimization Sql execution eff...
This article example shares the specific code of ...
1. Yum installation yum install subversion 2. Con...
Preface I am used to writing less/sass, but now I...
The Golden Rule Always follow the same set of cod...
1. Overview of modules and instructions used to l...
Introduction When the MySQL InnoDB engine queries...
Table of contents 1. Overview 2. Parameters for c...
It is provided in the form of WeChat components. ...
ps: The environment is as the title Install possi...
Table of contents 1. Teleport usage 2. Complete t...
This article shares the specific code of JavaScri...
1. addtime() Add the specified number of seconds ...
First, we need a server with Docker installed. (I...