I have made a table containing with data that i depict to a dashboard.
Well, there should exist for each month only one record.
My query brings the below Oracle table:
select * from PPLP_LOAD_GENSTAT order by 2 desc
This outputs:
For example, i want to remove PPL_IMPORT_CALLHOSTED_ESTIMATES double record and keep only one. And so on for other duplicate records. How can a generic query be executed to remove duplications and keep only one row as original?
How would that be possible?