I'll think you'll need to edit the query for that.

Code: 
SELECT * FROM tblLulz WHERE fldPrimaryKey > ((SELECT MAX(fldPrimaryKey) FROM tblLulz) - 10) ORDER BY DESC
I'm not sure you can use custom queries in wordpress.

edit:

Or do what gavo said..

He suggests to put your result in an array, and then sort the array.
Which works too.
Robin H Reviewed by Robin H on . PHP help - Need help with putting a list into order I have been coding up a little something, but I'm stuck at literally the last hurdle. This is part of the code that I have: query_posts($query_string . '&cat=203&posts_per_page=20'); That lists the latest 20 posts from category 203 (which is movies for me). http://releasethread.com/uploadedimages/r98voe.png But now the part that I'm stuck with. I want THAT list above (latest posts), to be in alphabetical order. Rating: 5