I have an table with projects in them:
- id (int)
- ordering (int)
- content (string)
My projects-page shows the current project and a preview of the next three projects. For fetching the next three projects, I would like to use a clean MySQL query. Of course, if the person is on one of the last projects, there are not 3 more projects left to show.
So it then needs to show the first one again.
Basically Im trying to combine these two statements:
SELECT *
FROM projects
WHERE ordering > {currentProjectOrdering}
ORDER BY ordering ASC
and
SELECT *
FROM projects
WHERE ordering > 0
ORDER BY ordering ASC
and also
LIMIT 0,3
In a nutshell: get the next three records with higher ordering than the current project, if (some of) these do not exist, start from ordering = 1.
Assuming there are 10 projects: Project 1 shows 2,3 and 4 Project 2 shows 3,4 and 5 ... Project 9 shows 10, 1 and 2
Unionwhat you want? – VanessaBR Jun 19 '12 at 16:28