ChewDoggie
Programmer
G'morning all!
I have an Access View called "vDupRacers" that attempts to find all duplicate racerids that occur in the registration table. This is the code I have currently:
vDupRacers
The vDupRacer View is proving to be unreliable. It doesn't catch KNOWN duplicate racerids. If anyone can be of assistance in re-formatting the vDupRacers View, I'd really appreciate it. I need to, somehow, include a classid with the above query but the classids will be unique, so the above query fails to produce any results.
Thanks!
AMACycle
American Motorcyclist Association
I have an Access View called "vDupRacers" that attempts to find all duplicate racerids that occur in the registration table. This is the code I have currently:
vDupRacers
Code:
SELECT DISTINCT eventid, status, racerid
FROM Registration
GROUP BY eventid, status, racerid
HAVING Count(racerid) > 1 And status <> 'D';
The vDupRacer View is proving to be unreliable. It doesn't catch KNOWN duplicate racerids. If anyone can be of assistance in re-formatting the vDupRacers View, I'd really appreciate it. I need to, somehow, include a classid with the above query but the classids will be unique, so the above query fails to produce any results.
Thanks!
AMACycle
American Motorcyclist Association