vote up 3 vote down star
1

I have a pretty simple SQL query but something is missing and I didn't find an answer for this problem yet. The thing is that I select some fields with several ids and I want the result to be ordered in this particular order.

The query is the following

SELECT `content`.* 
FROM   `content` 
WHERE  (user_id = "1" AND ( id = "4" OR id = "7" OR id = "5" OR id = "8" ))

The default order is "id ASC" (id is my primary key), but I want the order to be 4,7,5,8 in this particular case.

Any ideas?

flag

5 Answers

vote up 5 vote down check

This will do what you want:

select * 
from myTable
order by field(myID, 8, 7, 6) desc;

You can set the order of whatever ID's (or whatever) youwant to appear, and any others will follow after that. Hope that helps.

More on this @ http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_field

link|flag
Pretty nice :) Shorter than le dorfier's solution and easier to implement in Zend Framework's Zend_Db select(). Thank you! – Bogdan Constantinescu Mar 24 at 17:20
vote up 0 vote down

You can try adding the following to the end of your query.

ORDER BY CASE ID WHEN 4 THEN 1 WHEN 7 THEN 2 WHEN 5 THEN 3 WHEN 8 THEN 4 ELSE 5 END
link|flag
vote up 1 vote down
ORDER BY CASE id WHEN 4 THEN 1 
                 WHEN 7 THEN 2 
                 WHEN 5 THEN 3 
                 WHEN 8 THEN 4 
                 ELSE 99
         END;
link|flag
vote up 3 vote down

The way I'd normally do this sort of odd ordering is use a case statement:

order by case id
             when "4" then 1
             when "7" then 2
             when "5" then 3
             when "8" then 4
             else 99
         end

Not sure if this translates directly to mysql but the idea should.

link|flag
vote up 10 vote down
ORDER BY CASE user_id  
    WHEN "4" THEN 1  
    WHEN "7" THEN 2  
    WHEN "5" THEN 3  
    WHEN "8" THEN 4  
    ELSE 5  
END

If you want to generalize it, you can create a new table with two columns - "user_id" and "order_by_val", join to it, and "ORDER BY order_by_val".


EDIT: Per @Tim, MySQL has a proprietary function - FIELD() - as noted in his post, if you aren't concerned about portability, or the issue that function return values are unoptimizable.

link|flag
Great, didn't know this. Thanks :) – Bogdan Constantinescu Mar 24 at 16:47
You might also look at field(), I showed some sample code for this below too. The above code seems a little more verbose and cluttered. – Tim Mar 24 at 17:19
@Tim, I wasn't aware of this function - it's handy to know (though proprietary, and might create problems with optimizability, as I'm sure you know - not a problem with short lists though.) – le dorfier Mar 24 at 17:53

Your Answer

Get an OpenID
or

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