Sql Query : Write a query to fetch duplicate records from a table? | Find duplicate rows in sql

Опубликовано: 05 Октябрь 2024
на канале: Alpha College
2,376
21

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...