Skip to content

Instantly share code, notes, and snippets.

@rociiu
Created March 30, 2011 01:16
Show Gist options
  • Save rociiu/893688 to your computer and use it in GitHub Desktop.
Save rociiu/893688 to your computer and use it in GitHub Desktop.
table scores:
user_id | value | score_date
1 90 2010-03-04
1 80 2009-03-04
2 90 2009-04-05
2 70 2009-05-06
3 100 2010-04-06
Find most recent scores:
result should like:
user_id | value | score_date
1 90 2010-03-04
2 90 2009-04-05
2 70 2009-05-06
3 100 2010-04-06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment