How To delete duplicate record from a particular table?
Answer Posted / deepa
For Example
sno names
1 arun
2 arun
3 arun
6 arun
7 bala
11 bala
12 guna
9 guna
14 guna
10 raj
13 raj
Table Name T1
Fields Names Sno,Names
Delete From t1 where sno not in
(select min(sno) from t1 group by names)
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
Explain stored procedure?
what's sql server? : Sql server database administration
What is postgresql server?
What the different types of Replication and why are they used?
How do you create a clustered index?
How to rebuild all indexes on a single table?
You want your report to display a hyperlink that will take users to your intranet. How do you configure such a hyperlink?
Is it possible to import data directly from t-sql commands without using sql server integration services? If so, what are the commands?
How do you check sql server is up and running?
Can we return Data from 4(more than 1) tables in stored procedure?
How to convert a table data in XML format in sql server?
What is table-valued sub query?
What is ssl in sql server?
What is difference statement and preparedstatement?
You want to generate a report that is formatted as a chart. Can you use the report wizard to create such a report?