Zebra Technologies Interview Question

Write a query to find duplicates in a table without using DISTINCT

Interview Answer

Anonymous

Oct 28, 2025

I took an example table of users and wrote this query SELECT Age, COUNT(Age) FROM Users GROUP BY Age HAVING COUNT(Age) > 1