• You have to correct your join clause. Your HAVING clause has an issue as well.

    SELECT parentName, count(*)

    FROM parents p --Alias parent table

    JOIN children c --Alias children table

    ON p.parentName = c.parentName --Use correct join syntax

    GROUP BY parentName

    HAVING COUNT (childName) > 1 --Only greater than

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2