Hi all.
I'm trying to get results from a table BUT am running into an issue. Normally a query would run as follows;
.... ORDER BY blah blah LIMIT x, y
1. Order the results using ORDER BY
2. Limit the results starting from 'x' for 'y' results
My issue is that I want to do the two in reverse order;
.... LIMIT x, y ORDER BY blah blah
1. Limit the results starting from 'x' for 'y' results
2. Order the results using ORDER BY
Is there any way to do this? I know that simply restructuring the query doesn't work. Any help would be greatly appreciated
Thanks guys
|