Query to fetch duplicate records from a table.
SELECT name,salary,count(*)
FROM employees
GROUP BY name,salary
HAVING count(*) greater than 1
Sal query || SQL interview question || helpumyway
mysql interview queries playlist:
• Sql Query - Write a query to fetch al...