Home > Database > Mysql Tutorial > body text

How to create and delete indexes in MySQL?

黄舟
Release: 2017-08-02 10:16:37
Original
3468 people have browsed it

mysql index, mysql creates an index, mysql deletes an index

1. In a relational database, an index is a database structure related to a table, which enables the execution of SQL statements corresponding to the table Got faster. Today I will briefly demonstrate the creation, query and deletion of indexes in mysql.

2. First create a table casually, the SQL statement is as follows:

CREATE TABLE IF NOT EXISTS `student` (
 `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '学号',
 `name` varchar(64) NOT NULL DEFAULT '' COMMENT '姓名',
 `sex` tinyint(1) NOT NULL COMMENT '性别',
 `age` tinyint(2) NOT NULL COMMENT '年龄',
 `class` varchar(64) NOT NULL DEFAULT '' COMMENT '班级',
 PRIMARY KEY (`id`)
 ) ENGINE=MYISAM DEFAULT CHARSET=utf8 COMMENT='学生表';
Copy after login

How to create and delete indexes in MySQL?

3. You can see that in the SQL statement to create the table, a primary key index has been established. At this time, view the index in the table: SHOW INDEX FROM `student`, the result is as shown in the figure:

How to create and delete indexes in MySQL?


##4. Of course, we can also add other indexes based on , such as a unique index. Assuming that each student's name cannot be repeated, then you can add a unique index on the name field:

ALTER TABLE `student` ADD UNIQUE `stu_name` (`name`);
Copy after login

At this time, check the index in the table again, SHOW INDEX FROM `student`, The result is as shown in the figure:

How to create and delete indexes in MySQL?


##5. Then give Add a common index to the class:

ALTER TABLE `student` ADD INDEX `stu_class` (`class`);
Copy after login
View the index in the table, SHOW INDEX FROM `student`, the result is as shown in the figure:

How to create and delete indexes in MySQL?


6. Next is to delete the index, delete the unique index and ordinary index:

ALTER TABLE `student` DROP INDEX `stu_name`;
ALTER TABLE `student` DROP INDEX `stu_class`;
Copy after login
Then check the index in the table, SHOW INDEX FROM `student`, the result is as shown in the figure:

How to create and delete indexes in MySQL?

How to create and delete indexes in MySQL?

7. At this time, there is only one primary key index left If you delete it directly, an error will be reported:

ALTER TABLE `student` DROP PRIMARY KEY;
Copy after login
Reason: Because the id key associated with the primary key index is automatically growing;


How to create and delete indexes in MySQL?

8. You need to cancel the automatic growth of the id key first:

ALTER TABLE `student`  MODIFY `id`  int(10) NOT NULL COMMENT '学号'
Copy after login
Execute again:

 ALTER TABLE `student` DROP PRIMARY KEY;
Copy after login

View the index in the table, SHOW INDEX FROM `student`, in the table There is no index anymore

How to create and delete indexes in MySQL?

The above is the detailed content of How to create and delete indexes in MySQL?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!