I have a table (news), I try to select all rows except the four most recent. The table have a field news_date (date format) and news_id (autoincremet). The result should be desc.
MySQL version: 5.0
Table structure
news_id (tinyint)
news_title (text)
news_date (date)
I tried this
Select *
FROM news AS n
JOIN
( SELECT news_id
FROM news
ORDER BY news_id
LIMIT 1 OFFSET 4
) AS lim
ON n.news_id < lim.news_id ;
Can anyone help me with this query?