Wednesday, March 10, 2010

PHP - How to get next and previous row in MySql Query

---Next---

SELECT id, title
FROM topics
WHERE id > $currentTopicId
ORDER BY id ASC
LIMIT 1

---Previous---
SELECT id, title
FROM topics
WHERE id < $currentTopicId
ORDER BY id DESC
LIMIT 1

No comments:

Post a Comment