Pilih semua nilai kolom yang sama di SQL

SELECT RollId, count(*) AS c FROM `tblstudents` GROUP BY RollId HAVING c > 1 ORDER BY c DESC
adeleyeayodeji