Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MySQL 5.5How to delete an index

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly shows you "MySQL 5.5 how to delete the index", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "MySQL 5.5 how to delete the index" this article.

Mysql > show keys from dept2

+ +-+

| | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |

+ +-+

| | dept2 | 0 | PRIMARY | 1 | deptno | A | 4 | NULL | NULL | | BTREE |

| | dept2 | 1 | idx_dept2_deptno | 1 | deptno | A | 4 | NULL | NULL | | BTREE |

| | dept2 | 1 | idx_dept2_report_date | 1 | report_date | A | 4 | NULL | NULL | YES | BTREE |

+ +-+

3 rows in set (0.00 sec)

Method ①

Mysql > drop index idx_dept2_deptno on dept2

Query OK, 0 rows affected (0.02 sec)

Records: 0 Duplicates: 0 Warnings: 0

Mysql > show keys from dept2

+ +-+

| | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |

+ +-+

| | dept2 | 0 | PRIMARY | 1 | deptno | A | 4 | NULL | NULL | | BTREE |

| | dept2 | 1 | idx_dept2_report_date | 1 | report_date | A | 4 | NULL | NULL | YES | BTREE |

+ +-+

2 rows in set (0.00 sec)

-- method ②

Mysql > alter table dept2 drop index idx_dept2_report_date

Query OK, 0 rows affected (0.05 sec)

Records: 0 Duplicates: 0 Warnings: 0

Mysql > show keys from dept2

+- -+

| | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |

+- -+

| | dept2 | 0 | PRIMARY | 1 | deptno | A | 4 | NULL | NULL | | BTREE |

+- -+

1 row in set (0.00 sec)

The above is all the contents of the article "how to delete the index in MySQL 5.5". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report