This seems like a simple query but I can't seem to get it working.
I want to run a query that will only show records that have a count above one.
This is the query that I thought would work
Thanking in advance for any help received
I want to run a query that will only show records that have a count above one.
This is the query that I thought would work
Code:
SELECT Field,Count(Field) From table where Count(Field)>1 Group By Field
Thanking in advance for any help received