I have a query ordered by NAME that return smt like this:

 ID     NAME
2121927 AAA
2123589 AAB
2121050 AAC
2463926 BBB ---> known ID
2120595 CCC
2122831 DDD
2493055 EEE
2123583 EEF

I need to know the next ID and the prev ID (if exists) of known ID && NAME How is it possible with only 1 query ?

link|improve this question
you can do it in 2 queries , see example how : stackoverflow.com/questions/1259458/… – Haim Evgi Dec 16 '10 at 14:48
@Haim, you can join the two queries together with a union, can't you? – Paul Tomblin Dec 16 '10 at 14:53
feedback

1 Answer

up vote 2 down vote accepted
  SELECT *,
         'next'
    FROM table
   WHERE `name` > 'BBB'
ORDER BY `name`
   LIMIT 1

UNION

  SELECT *,
         'previous'
    FROM table
   WHERE `name` < 'BBB'
ORDER BY `name` DESC
   LIMIT 1

If you don't know particular BBB name field value - you could replace it with subquery like SELECT name FROM table WHERE id = 42, where 42 is the known ID value.

link|improve this answer
lol, sorry :) i had correct result with next row, the prev row was be the first one because i ordered by ASC not DESC. – Luca Dec 16 '10 at 15:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.