Forum Replies Created

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

  • RE: Finding duplicates but with joined tables

    This will get you a list of those customers.  You could put this into a view and then query off of it.

    SELECT

        COUNT(c.ID) AS DuplicateCount,

        c.LastName,

        c.Phone,

        a.Street

    FROM

        Customers...

  • RE: Duplicate Records Being Inserted

    Steve,

    I presume that you are using JavaScript to keep the user from clicking the submit button twice (double-clicking).  If the user has JavaScript disabled this will no longer be...

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