How to retrieve Duplicate Rows only in a Table?
Suppose if a Table Name is "Education". It consists of
multiple columns. Then if we insert rows into this table
with duplicate records then how can we retrieve only
duplicate records from that table?
Answer Posted / aditi yadav
SELECT *FROM Employee
WHERE JoiningDate >= DATEADD(M, -2, GETDATE())
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is difference between delete and truncate commands? : Sql dba
What do you understand by pl/sql records?
Define tables and fields in a database
What does closing a cursor do?
How do you remove duplicates without using distinct in sql?
What is the difference between joins?
Can you selectively load only those records that you need? : aql loader
Differentiate between % rowtype and type record.
Can we call stored procedure in function?
What is inner join in sql?
Which are the different case manipulation functions in sql?
Is trigger a stored procedure?
What are the types of dbms?
How do I access sql anywhere database?
What is a procedure in pl sql?