Partitioning
Learn about partitioning in PostgreSQL.
We'll cover the following...
Partitioning refers to splitting a table with too many rows into a set of tables, each containing a part of those rows. Several kinds of partitioning are available, such as list or range partitioning. Starting in PostgreSQL 10, table partitioning is supported directly.
Partitioning is not denormalization
While partitioning isn’t denormalization, the limits of ...