Question d’entretien chez MedeAnalytics

Find duplicate rows in a table.

Réponse à la question d'entretien

Utilisateur anonyme

11 mars 2018

select id,count(id) from students group by id having count(id)>1 The above query helps to display records with id mentioned more than 1 time.