Pergunta de entrevista da empresa MedeAnalytics

Find duplicate rows in a table.

Resposta da entrevista

Sigiloso

11 de mar. de 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.