write a query to remove duplicate records without using primary key column?
Answers were Sorted based on User's Feedback
Answer / mathanrathinam
delete tmp from(select col1,col2,row_number over(partition by col1,col2 order by col1,col2) rownum from tablename) tmp
where rownum >1
Is This Answer Correct ? | 7 Yes | 8 No |
How do you size a resultset?
what is raid? : Sql server database administration
What is user defined datatypes and when you should go for them?
What is the default order of an order by clause?
Do you know concepts and capabilities of sql server?
Explain isolation levels that sql server supports?
What is nonclustered index on computed columns?
What is sql server agent and what are the two modes of authentication in sql server?
Diffrent types of function
Describe in brief sql server monitoring ways.
In which format does an image save in SQL Server database ?
explain how to create a new schema in a database? : Sql server database administration