DB Development Question:
How to find the duplicate rows count from employees table in oracle?

Answer:
select employee_id, count(*) from employees group by
employee_id having count(*) > 1
employee_id having count(*) > 1
Previous Question | Next Question |
What is the family trees and connection by clause? | In which phase of mload can i use .FILLER? |