I have tried implementing the query to find records in one table that have equal values in one column and for some reason it does not retrieve correct result. I have been using an online SQL interpretor to access a table.Is there something wrong with this statement:
SELECT firstname FROM empinfo GROUP BY age HAVING (COUNT(age) > 1)
Thanks
SELECT firstname FROM empinfo GROUP BY age HAVING (COUNT(age) > 1)
Thanks