Drax wrote: Is it possible to sort a subset of mysql results when using the limit command? Example: select * from table order by name limit 5, 5 running this query seems to execute the select *, sort the result and then pick out the 5 records as specified in the limit statement. What I need is the 5 records sorted after being extracted from the result. Dont know if I am making sense...