I need to get the last n records from a table in ASC order.
I know I can query the count and then limit another query to the last n.
I could also query the first n in DESC order and then flip them in an array.
Is it possible to get the last n records in ASC order with a single query?
Keith
I know I can query the count and then limit another query to the last n.
I could also query the first n in DESC order and then flip them in an array.
Is it possible to get the last n records in ASC order with a single query?
Keith