I have an Oracle table as Follows:
ID A B C
1 aaa bbb ccc
2 aaa bbb ccc
3 ddd eee fff
4 ddd eee fff
5 aha bqb ccd
6 aaa bbb ccc
I am looking to delete every duplicate row, even if they different IDs.
The intended result is the following:
ID A B C
4 ddd eee fff
5 aha bqb ccd
6 aaa bbb ccc
I am indifferent about keeping the smallest or largest ID.
In other words, i would not mind the following:
ID A B C
1 aaa bbb ccc
3 ddd eee fff
5 aha bqb ccd
Your help is greatly appreciated.