Viewing 2 posts - 1 through 2 (of 2 total)
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...
April 12, 2004 at 12:24 pm
#502451
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...
April 12, 2004 at 12:01 pm
#502446