Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Query Duplicates

    bitbucket-25253

    I will definitely look into this to get a better understanding.

    Thanks for the reply!

  • RE: Query Duplicates

    Eureka! I Found it.

    I created a temp table and Inner Joined it to produce the desired results.

    SELECT CID,

    COUNT(CID) AS NumOccurrences

    Into tblCID FROM tblContacts

    GROUP BY CID

    HAVING (COUNT(CID) > 2)

    order by...

  • RE: Query Duplicates

    Thanks for the reply,

    When I paste your query it works perfectly, but when I change it to apply to one of my existing tables NumOccurrences always = 1 even if...

Viewing 3 posts - 1 through 3 (of 3 total)