Write a Query to Delete The Repeated Rows from emp table;
DELETE FROM emp WHERE rowid NOT IN (SELECT MIN(rowid) FROM emp GROUP BY ename );