Created
March 30, 2011 01:16
-
-
Save rociiu/893688 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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