What do you mean by "ten thousand tables and ten hundred tables" in the database design specification?

3. Library table design
(1) the use of partitioned tables is prohibited.
(2) split the fields with large fields and low access frequency into separate tables for storage, separating hot and cold data.
(3) the table by date and time must conform to the YYYYMM [HH] format, for example, 2013071601. The year must be represented by four digits. For example, daily hash table user_20110209, monthly hash table user_201102.
(4) adopt the appropriate strategy of sub-database and sub-table. For example, ten tables in a thousand libraries, ten hundred tables in ten libraries, and so on.

what do you mean by "ten tables in a thousand libraries and one hundred tables in ten libraries" in Article 4?

Mar.23,2021

large table sub-library
long table split

Menu