Hi! I have MixedTable: this table can every day add more then 4 rows.
Id PersonId FruitsId Color
1 1 Apple
2 1 Orange
3 1 Cherry
4 1 Orange
But I want every time run and update one row. Here I have for rows. For example: In result I want this.
First time run update one row.
Id PersonId FruitsId Color
1 1 Apple green
2 1 Orange
3 1 Cherry
4 1 Orange
Second time run
Id PersonId FruitsId Color
1 1 Apple green
2 1 Orange yellow
3 1 Cherry
4 1 Orange
Third time run
Id PersonId FruitsId Color
1 1 Apple green
2 1 Orange yellow
3 1 Cherry red
4 1 Orange
Four time run
Id PersonId FruitsId Color
1 1 Apple green
2 1 Orange yellow
3 1 Cherry red
4 1 Orange yellow