To put it simply, partitioning is to split the data of a table into N blocks, and each block stores different data. Then read the content in the specified block according to the rules.
For example, SQLselect * from table where column=? reads the data in the specified block based on column. When the amount of data is large, partitioning can speed up the process. that's all.
To put it simply, partitioning is to split the data of a table into N blocks, and each block stores different data. Then read the content in the specified block according to the rules.
For example, SQL
select * from table where column=?
reads the data in the specified block based on column. When the amount of data is large, partitioning can speed up the process. that's all.