Friday, 17 July 2015

How to delete the duplicate values from table ?

To Delete duplicate values from the table we have to execute  the  query given below.

delete from emp where rowid not in (select min(rowid) from emp group by empno);

No comments:

Post a Comment

Query to find request set and its responsibility

  SELECT FA.application_name,        fr.responsibility_name program_attached_to,        frg.request_group_name,        fcp.request_set_name,...