Write a query to find duplicate rows In table?
SELECT std_id, COUNT(std_id) as cnt FROM Student GROUP by std_id having cnt > 1
BY Best Interview Question ON 05 Aug 2019
SELECT std_id, COUNT(std_id) as cnt FROM Student GROUP by std_id having cnt > 1