For example, I have this sample data:
DATE VALUE ID
2010-09-28 1 20000
2010-09-28 1 50000 X
2010-09-28 3 20001
2010-09-28 3 50001 X
2010-10-02 6 50002
2010-10-02 6 50003
My problem is that I have duplicated data, and I can only differentiate them by the auto-incremented ID: the duplicate has quite a good margin of difference; I'd like to delete the latest entries, considering the date and value are equal compared to their corresponding previous entry (marked with X). It is no problem though if rows are equal, if they don't have a previous ID (as in the last 2 rows).
Any ideas?