Created
December 8, 2010 17:23
-
-
Save ngmaloney/733586 to your computer and use it in GitHub Desktop.
top comments by uid
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
select c.uid, c.cid, c.created | |
from ( | |
select uid, max(created) as maxcreated | |
from comment group by uid | |
) as x inner join comment as c on c.uid = x.uid and c.created = x.maxcreated | |
order by maxcreated desc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment