/* This SQL Query will show each of those duplicate
rows individually instead of just grouping it */
SELECT username,email
FROM `users`
WHERE `username`
IN (SELECT username FROM `users` GROUP BY username HAVING COUNT(username) > 1)
SELECT DISTINCT name
FROM fruits;