Write a query to delete duplicate records in SQL SERVER
Answer Posted / dharmesh
your table look like this and want to delete duplicate
record
chandran 23
ranjith 24
chandran 23
delete top(1) from tablename where name='chandran' and
age=23
| Is This Answer Correct ? | 3 Yes | 28 No |
Post New Answer View All Answers
Describe the left outer join & right outer join. : sql server database administration
Name 3 ways to get an accurate count of the number of records in a table?
application server is slow what may be the problem
What are xml indexes?
Explain transaction server implicit?
How to list all schemas in a database?
How to create a login account in ms sql server to access the database engine using "create login" statements?
How to get the definition of a user defined function back?
What is bulkcopy in sql?
Give an example of why you would want to denormalize a database
What is the difference between a function and a stored procedure?
What is the sql case statement used for? Explain with an example?
Suppose we have a table "MyTable" containing 10 rows, what query should be executed to update the odd rows "Salary" as 9000?
What is the difference between substr and charindex in the sql server?
What is normalization according to you and explain its different levels?