I have a page where the 3 latest entries in my db will be featured and all the older entries will be placed in another place…
i have this code for selecting the latest 3 entries:
SELECT
release_id, release_pic, release_artist, release_title, release_info,
release_catalognr, beatportlink, ituneslink, traxsourcelink, alternativelink
FROM udgivelse
ORDER BY release_id DESC LIMIT 3;
But how would i go about selecting all the other entries for the other part of my side…?
Meaning i want to start my selection from the 4th newest entry…
1 Answer