I have a table duplicate which shows datas as:
select * from ot.duplicate;
I wanted to delete the duplicate data from the table where I tried:
delete from (select * from(select * from ot.duplicate a
union
select * from ot.duplicate b) t1);
But I am getting error:
ORA-01752: cannot delete from view without exactly one key-preserved table