I've attempted to search but not sure I'm getting the keywords correct for this.
I want to select rows in desc order that aren't the last 5 rows but the 5 before that!
So if I had 140 rows, I want rows 131-135.
The following ets me 136-140.
SELECT id, title, content, date FROM tbl_news ORDER BY id DESC LIMIT 5
How could I change the limit value to achieve 131-135?
Thanks.
