Here's one for an SQL expert:
For ease let's say I have a set of letters a-z, and I say:
"select * from alphabet order by letter ASC limit 3,5"
This of course is going to give me D, E, F, G, H
However, if I want to get an inverted result, and try this,
"select * from alphabet order by letter DESC limit 3,5"
I'm going to get W, V, U, T, S, instead of H, G, F, E, D (which is what I want). [Boy is it tough to think backwards!!!]
Is there any way, without serious analysis and counting and all, to NATIVELY get the inverted result H,G,F,E,D using the limit clause in the query?
Thanks from me and anyone else who will need this to have "sort links" at the head of tables which are subsets of records!!
Sam Fullman
Compass Point Media