My database has tables where each row represents an entity, and there are other tables in which the same object can appear several times, but only the last record is valid.
For example, I have a table customer
where each row represents a client and another table customer_membership_status
where the same client can be referenced several times, but only the last record for each client is suppost to use. Data is never updated in customer_membership_status
, only inserted.
Is there a term to describe this template? I ask because I would like to quickly and easily explain the intended use of the table to others.
source
share