I asked a question close to this yesterday but need to take it a step further. I know that on any table you can specify what row to start on and how many rows to return using the
SELECT ... LIMIT <start-row>, <length>
command.
I also know that you can order tables on column heading using the
ORDER BY <column-name>
command.
What I want to know is, is there anyway to combine these so that MySQL will order a table alphabetically, and then only return a specific subset from the newly ordered table?
Thanks.
write them both: