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.

I'm trying to order the results of a query in a non alpha-numerical order. For example, if the possible values of a column are '1', '2' and '3'. ORDER BY asc will display rows with '1' first, then rows with '2' and finally rows with '3'. ORDER BY desc will do the oppsite.

What if I want a different order, like 3, 1, 2 or 1, 3, 2 ? Is that possible ?

Thank you

share|improve this question
what do you mean? what kind of order is 3,1,2? – Massimiliano Peluso Aug 5 '11 at 14:06
1  
thats not realy an order – blejzz Aug 5 '11 at 14:07
3,1,2 or 1,3,2 is not an ordered result. – Dusty Roberts Aug 5 '11 at 14:08
3,1,2 or 1, 3, 2 is not any kind of natural order...what are you needing that for? – TheCharliemops Aug 5 '11 at 14:11
That's exactly the idea. It is not a numercial order. It only has a functional sense. – Thibault Witzig Aug 5 '11 at 14:11

4 Answers

You want to use a case statement in your order by clause.

So for your 3, 1, 2 example, it would look something like this:

ORDER BY
    CASE <yourField>
        WHEN 3 THEN 1
        WHEN 1 THEN 2
        WHEN 2 THEN 3
        ELSE 4 END ASC
share|improve this answer
1  
Or some other functional dependence to express the OP's New World Order :-) – hardmath Aug 5 '11 at 14:11
Thank you, that's exactly what I was looking for. :) – Thibault Witzig Aug 5 '11 at 14:18
Don't forget to accept this answer if you found it helpful – Jim B Aug 5 '11 at 15:04

It should be possible, however, you do not specify what order you are looking for. If you are just looking for a random order you can use ORDER BY NEWID().

share|improve this answer
Thanks but i'm not looking for a random order, I want to be able to define it. – Thibault Witzig Aug 5 '11 at 14:09

you can add your own column named as example my_order and then order by my_order

share|improve this answer

You don't really have an ordering as much as a certain sequence. How would you even specify this? If we think of the collection of rows as an indexed array, then you could make a auxiliary index table:

position  refers_to
   1         3
   2         1
   3         2
   .         .
   .         .

Then you can join the tables ON(index_table.refers_to = my_table.that_column) ORDER BY index_table.position.

share|improve this answer

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.