I am currently creating a service that fetches data from a public data source every 24 hours. The data is essentially structured as thus:
a | b | c | ImportDate |
---|---|---|---|
1 | 2 | 3 | 12.06.22 |
2 | 3 | 3 | 12.06.22 |
1 | 2 | 3 | 11.06.22 |
Where I want to have only unique values (ignoring the importdate), i.e something like this.
a | b | c | ImportDate |
---|---|---|---|
1 | 2 | 3 | 12.06.22 |
2 | 3 | 3 | 12.06.22 |
Where we remove the old duplicate value.
What would be the best way to approach this to ensure no data is actually lost, only the duplicate values.
Thanks in advance!