In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
Xiaobian to share with you mysql add multiple btree index method, I hope you read this article after the harvest, let us discuss it together!
At present, most database systems and file systems adopt B-Tree or its variant B+Tree as index structure.
1. B+ tree is a balanced multi-fork tree, the height value from root node to each leaf node does not exceed 1, and there are pointers between nodes at the same level.
2. Regular search on B+ tree, the search efficiency from root node to leaf node is basically equal, there will be no large fluctuation, and when scanning based on index, it can also use bidirectional pointer to move left and right quickly, which is very efficient.
In mysql, indexes can effectively improve query efficiency, but in actual projects, even if indexes are added to where conditions, indexes may not be used.
For example, a chestnut: where id=3 and price>100;//query products with id above 3,100 yuan (id and price are added indexes respectively)
Mistake: only one of id or price can be used because it is an independent index, and only one can be used at the same time.
Union index: After creating indexes on multiple columns at the same time, the left prefix principle needs to be met before indexes are used.
Consider index (a,b,c). (Note related to order)
statement| Whether to use index
where a=3 Yes, only column a is used
where a=3 and =5 Yes, ab column is used
where a=3 and b=4 and c=5 Yes, abc is used
where b=3 or c=4 No because skip a
where a=3 and c =4 a uses index, c does not
where a=3 and b like 'hello%' a used, b used
After reading this article, I believe you have a certain understanding of mysql to add multiple btree index methods, want to know more related knowledge, welcome to pay attention to the industry information channel, thank you for reading!
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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.