subtables
Subtables are subordinate tables that originate from a larger table in a data model or report. They are used to organize data into smaller, related units while maintaining a connection to the parent dataset. Subtables can be logical, produced by queries that filter or group data, or physical, represented by separate tables that hold related rows in a one-to-many relationship or as partitioned storage within a database.
Logical subtables are commonly created as views or temporary tables that present a subset of rows or
Subtables support drill-down analysis, access control, normalized data organization, and reporting. They allow analysts to focus
Key concerns include referential integrity between the parent and subtable, update and delete cascades, and performance.
An example is a table named Orders with a subtable named OrderItems that stores items for each
Subtables are related to broader concepts such as views, partitions, and relational design patterns for one-to-many