how to remove records from table?
no name
1 a
2 b
1 a
2 b
3 c
Answer Posted / pratap
Delete from table name where row_id not in (select min(no)
from table_name group by no)
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What are the three forms of normalization?
How does a self join work?
What does sql stand for?
Is primary key is clustered index?
What is exception? What are the types of exceptions?
What are the different ddl commands in sql?
Is sql sequential or random?
What does count (*) mean in sql?
What is pl sql block structure?
What is full join in sql?
how to select first 5 records from a table? : Sql dba
Can we join two tables without common column?
Is foreign key mandatory?
What is the difference between count 1 and count (*) in a sql query?
How can I change database name in sql?