Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Assuming I have the following, data from a field:

Category Name
-------------

Games
Movies
All
Music
Software

I want to order the above data in alphabetical (ascending) order but I want 'All' to appear last at the bottom of the list. Not sure how to do this. Thanks.

share|improve this question

2 Answers

up vote 6 down vote accepted

ORDER BY category_name='All' ASC, category_name ASC

share|improve this answer
haven't tested, but wouldn't this put 'All' at the top of the list rather than at the bottom? – Brian Driscoll Aug 30 '11 at 16:02
@Brian Driscoll : If you want it on top, then ORDER BY category_name='All' DESC, category_name ASC. You might have asked about my very first version (which is already fixed, I didn't notice we wanted it at the bottom). – a1ex07 Aug 30 '11 at 16:03
I'll take your word for it since I'm at work currently and don't have time to test. I'm sure it's right, just doesn't seem intuitive (to me). – Brian Driscoll Aug 30 '11 at 16:06
Thanks the original solution: ORDER BY category_name='All' ASC, category_name ASC has worked for me. – sidewinder Aug 30 '11 at 16:07
That's great. I didn't know about this option. THX! – HBublitz Aug 30 '11 at 16:15
show 1 more comment
SELECT Category_Name, if(Category_Name='All',1,0) as orderAid
FROM CategoryTable
ODER BY orderAid, Category_Name
share|improve this answer
This is a very interesting answer. Thanks! – sidewinder Aug 30 '11 at 16:08
There's no need for that complexity, catname = 'all' evaluates to 0 if false and 1 if true. – Johan Aug 30 '11 at 16:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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