Delete duplicate rows from a table without primary key by
using a single query
Table Employee
empname salary
A 200
B 300
A 200
C 400
D 500
D 500

Output should be

A 200
B 300
C 400
D 500

Answer Posted / v.krishnakumar

using the keyword distinct we can avoid the duplicate value
in our table,(ex) SELECT DISTINCT empname FROM Employee

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is candidate a key?

713


What are the main differences between #temp tables and @table variables and which one is preferred?

776


Can you create a logon trigger in sql server 2005 express edition?

800


How to skip remaining statements in a loop block using continue statements?

753


Explain an incremental backup?

754


What is a schema in ms sql server 2005?

736


What is your recommendation for a query running very slow? : sql server database administration

778


Define a cross join?

763


Tell me about normalization in DBMS.

759


Can we make the the chages By Using the Sql if u know any function or process please inform me Actuall result: BRK1 Break 1 Part 1 00:01:00:00 60 BRK1 Break 1 Part 2 00:01:00:00 60 BRK2 Break 2 Part 1 00:01:00:00 60 BRK2 Break 2 Part 2 00:01:00:00 60 BRK2 Break 2 Part 3 00:01:00:00 60 BRK3 Break 3 Part 1 00:01:00:00 60 BRK3 Break 3 Part 2 00:01:00:00 60 Desired O/P: BRK1 Break 1 Part 1 00:01:00:00 60 Part 2 00:01:00:00 60 BRK2 Break 2 Part 1 00:01:00:00 60 Part 2 00:01:00:00 60 Part 3 00:01:00:00 60

1920


Does union all remove duplicates?

805


What is indexing in sql server with example?

704


What is database white box testing?

851


What is primary key index?

708


If no size is defined while creating the database, what size will the database have?

749