In the MySQL solution here. I am trying to choose Distinct for column DevelopmentName but also want to only pull a count where the name occurs more than once. I'm getting a syntax error and have tried a comma between the column name and the Count instruction?
SELECT DevelopmentName count(*) as Counter
FROM sunshinemls_property_res WHERE Counter > 2
AND City = 'Bonita Springs' OR City = 'Estero'
OR City = 'Naples' OR City = 'Marco Island'
ORDER BY DevelopmentName ASC