Vertical Split Vertical splitting refers to the splitting of data table columns, splitting a table with many columns into multiple tables
Columns that are frequently queried in combination are placed in one table;
Horizontal Split Horizontal splitting refers to the splitting of data table rows. When the number of rows in a table exceeds 2 million, the processing will become slow. At this time, the data of one table can be split into multiple tables for storage. Some tips for horizontal splitting 1. Split principle Usually, we use the modulus method to split the table; for example, a user table with 4 million users is divided into 4 tables to improve its query efficiency.
By using the ID modulus method, the data is distributed into four tables. Id%4+1 = [1,2,3,4] Then query, update, and delete are also queried by taking the modulus method $_GET['id'] = 17, 17%4 + 1 = 2, $tableName = 'users'.'2' Select * from users2 where id = 17; When inserting, a temporary table uid_temp is also needed to provide an auto-incrementing ID. The only use of this table is to provide an auto-incrementing ID. insert into uid_temp values(null); After getting the self-incrementing ID, the sub-table is inserted through the modulo method;
in addition
Create view users as select from users1 union select from users2 union......... The above are the details of vertical splitting and horizontal splitting of MySQL tables. For more information about MySQL table splitting, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Native JS object-oriented typing game
>>: How to configure port forwarding for docker on CentOS 7 to be compatible with firewall
Countdown function needs to be implemented in man...
User Groups In Linux, every user must belong to a...
Here we only focus on the installation and use of...
Unix/Linux Services systemd services Operation pr...
Table of contents 【Function Background】 [Raw SQL]...
Download the Java Development Kit jdk The downloa...
【question】 The INSERT statement is one of the mos...
Table of contents question Reproduction Implicit ...
Table of contents TypeScript environment construc...
Table of contents 1. Master-slave replication Mas...
When using MySQL 5.7, you will find that garbled ...
Preface <br />In the previous article "...
Preface At work, I need to count the materials su...
How to check the file system type of a partition ...
1. First log in to the Alibaba Cloud website to r...