Query to Find the "last play date"

G

Guest

I have a table that has golf scores from several different players. They
don't always play each week. What I need to query is the last time (date)
each player played.
 
S

Stefan Hoffmann

hi,
I have a table that has golf scores from several different players. They
don't always play each week. What I need to query is the last time (date)
each player played.

SELECT PlayerNameOrId, Max(yourDateField)
FROM yourTable
GROUP BY PlayerNameOrId


mfG
--> stefan <--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top