write a query to delete similar records in particular
fields(columns) in different tables
Answer Posted / rajesh
DELETE emp WHERE ROWID NOT IN(SELECT MIN(eid)FROM emp GROUP
BY eid);
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Is join an inner join?
What is the difference between alter trigger and drop trigger statements?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What is a constraint? Tell me about its various levels.
Define tables and fields in a database
How many types of privileges are available in sql?
explain normalization concept? : Sql dba
What is faster join or subquery?
Is primary key clustered index?
What is a composite primary key?
Why we use pl sql?
Why is sql*loader direct path so fast?
Will truncate release space?
What company owns postgresql?
Which is faster union or join?