Answers

Question and Answer:

  Home  DB Development

⟩ How to find the duplicate rows count from employees table in oracle?

select employee_id, count(*) from employees group by

employee_id having count(*) > 1

 219 views

More Questions for you: