The view updates represents an incremental batch of all newly ingested data to be inserted or updated in the customers table. The following logic is used to process these records. Which statement describes this implementation?

Select an option, then click Submit answer.
- ○ The customers table is implemented as a Type 3 table; old values are maintained as a new column alongside the current value.
- ○ The customers table is implemented as a Type 2 table; old values are maintained but marked as no longer current and new values are inserted.
- ○ The customers table is implemented as a Type 0 table; all writes are append only with no changes to existing values.
- ○ The customers table is implemented as a Type 1 table; old values are overwritten by new values and no history is maintained.
- ○ The customers table is implemented as a Type 2 table; old values are overwritten and new customers are appended.

