what eliminate duplicate without using roenum and not
Answer Posted / satyajit patel
Mr. Kondla is almost right, but forgotten to use keyword
DISTINCT. It should be like
-> create table T2 as select DISTINT(*) from T1;
-> drop table T1;
-> rename T2 to T1;
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is query execution plan in sql?
Explain scalar functions in sql?
What are views in sql?
What is memory optimized table?
How do I partition in sql?
What is a temporal table?
What is a unique key?
How does sql store data?
Can variables be used in sql statements?
How many parts of a pl sql block are optional?
What is mutating trigger?
what is meant by nl2br()? : Sql dba
What are the operators in sql?
How to disable a trigger name update_salary?
Are stored procedures faster than dynamic sql?