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

What are the basic knowledge points of InnoDB

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

Share

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

This article is to share with you what are the basic knowledge points of InnoDB. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

1. About count (*)

Knowledge: MyISAM will directly store the total number of lines, InnoDB will not, need to scan by line.

The subtext is that for select count (*) from t; if the amount of data is large, MyISAM will return instantly, while InnoDB will scan line by line.

Practice: for tables with a large amount of data, InnoDB should not easily select count (*), which consumes a lot of performance.

Common pit: only when querying the total number of rows in the whole table, MyISAM will directly return the result. When the where condition is added, the two storage engines handle it in a similar way.

For example:

T_user (uid, uname, age, sex)

Uid competition

Age index

Select count (*) where age

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

Database

Wechat

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

12
Report