try this:
SELECT cn, date, score
FROM table
WHERE (cn, date) IN (
SELECT cn, MAX(date) AS date
FROM table
GROUP BY cn
)
note that you could have a duplicate with this method if two dates were exactly the same.
HTH.
-Mark
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

