-1

A table having duplicate record columns... I need to just show how many duplicate values present in that particular column...not unique values...Only Duplicate values should be displayed?

1 Answers1

1

Do a count with groupby, and then filter the ones that have duplicates with having your_count_column > 1

Ilia Gilmijarow
  • 1,000
  • 9
  • 11