jargon

Data engineering·Modelling for analysis

the row has both current_region and previous_region, and the region before that is gone.

SCD type 3

Also calledprevious-value column, type 3

Keep a fixed number of prior values as extra columns on the same row. It answers exactly one question — what did this look like before the last change — without the join complexity of type 2. It is rare in practice because the question it answers is rare, and because it quietly caps history at one step, which nobody remembers until someone asks about the step before.

Commonly confused with