how to delete duplicate rows from a specified table(only
single table)
how do you know which join is need to be used
Answer Posted / lakshya
SELECT * FROM table_name
WHERE ROWID NOT IN (SELECT MIN(ROWID) FROM table_name GROUP
BY table_columns);
| Is This Answer Correct ? | 9 Yes | 8 No |
Post New Answer View All Answers
The select into statement is most often used to create backup copies of tables or for archiving records?
Is sql sequential or random?
What is sql engine in oracle?
Can we use joins in subquery?
What is a join?
What is memory optimized?
What is difference between hql and sql?
What is database sql?
What is the most common sql injection tool?
What is delete command in sql?
how to check server status with 'mysqladmin'? : Sql dba
how to present a past time in hours, minutes and seconds? : Sql dba
What are the types of operators available in sql?
Why do we create views in sql?
What is write ahead logging in sql server?