write a query to delete similar records in same table
Answer Posted / umadevi
--deletes records within table without changing table name
delete from temp t1 where rowid<(select max(rowid) from temp
t2 where t1.empno=t2.empno) order by empno;
or
--create new table n insert records.
create table t1 as select distinct * from temp;
or
(truncate table)
truncate table t1;
insert into t1 select distinct * from temp;
Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is an invalid partition table?
What is inner join in sql?
What is dcl in sql?
What program will open a mdb file?
What is pl sql commands?
What is use of trigger?
What is cartesian join in sql?
What are all the different normalizations?
How does sql developer connect to oracle database?
Explain constraints in sql?
What is orm in sql?
What is a design view?
What are character functions?
How exception is different from error?
what is the different between now() and current_date()? : Sql dba