Distinct???

J-F

Registered User.
Local time
Today, 06:18
Joined
Nov 14, 2001
Messages
41
I have an SQLServer DB which contains times for competitors who have taken part in standard distance running events. Some competitors have taken part in these events more than once. How can I show their best result without showing any of their subsequent results.

J-F
 
try a query like
Code:
SELECT
  competitor
, Min(result) AS BestResult
FROM tblCompetitor
GROUP BY competitor
HTH Nouba
 

Users who are viewing this thread

Back
Top Bottom