Created
November 20, 2012 13:32
-
-
Save asjustas/4117951 to your computer and use it in GitHub Desktop.
Sort before group by
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 * FROM | |
( | |
select * from `my_table` order by timestamp desc | |
) as my_table_tmp | |
group by catid | |
order by nid desc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment