vote up 0 vote down star

Query table articles:

select * from articles where article_id in(98,97,96,99)

returned result ordered like

record 96 ...
record 97 ...
record 98 ...
record 99 ...

but I prefer the result ordered the same as 'in(98,97,96,99)'. Any tricks to make it possible? Thanks.

flag

58% accept rate
Could you say a bit more about the 'problem domain'? Is the IN list different on every query? Pulling back hundreds of rows using an IN list wont scale that far, regardless of the ORDER BY side of things. – martin clayton Nov 6 at 7:04

5 Answers

vote up 1 vote down

The IN comparison function is subject to a limit on the size of the list. More likely, once the list gets to a few hundred entries, your performance will drop off - you may as well retrieve the records individually and sort them in the client.

Having said that, here's another MySQL syntax you might consider, for the specific set of ids and order you quote in the OP.

ORDER BY
    FIND_IN_SET( article_id, '98,97,96,99' )
link|flag
vote up 0 vote down

You'll have to do the sorting through code as it appears that the string 98,97,96,99 is also generated via code. Anyway, see if this helps:

SELECT * FROM
(
SELECT 1 AS SortKey, articles.* FROM articles WHERE article_id = 98
UNION
SELECT 2 AS SortKey, articles.* FROM articles WHERE article_id = 97
UNION
SELECT 3 AS SortKey, articles.* FROM articles WHERE article_id = 96
UNION
SELECT 4 AS SortKey, articles.* FROM articles WHERE article_id = 99
.
.
.
) AS ASDF
ORDER BY SortKey
link|flag
vote up 1 vote down

You might be able to do something like this:

select * from articles where article_id in(98,97,96,99) order by article_id == 98 desc, article_id == 97 desc, article_id == 96 desc, article_id == 99 desc;
link|flag
Not scalable. If I got 500 id's the query may grow fat. – Shawn Nov 6 at 4:57
vote up 1 vote down

Shawn, When you use IN Statement, in MYSQL

It compares the First record ID to your given ID. Then compares Second record ID to your given ID. So ...

So the result will be displayed in asc order.

If you need dont use IN statement. I would prefer to Retrieve Each record in loop.

Thankyou

link|flag
Yes thought about that but still not scalable, I can have hundreds of id's in the 'in' statement, don't think putting query into a loop is a good idea. Thanks tho. – Shawn Nov 6 at 4:59
Definitely that will make the process quite slow. But IN Statement not supports that you have mention – sathish Nov 6 at 5:31
vote up 1 vote down

I suppose this might work:

select * from articles where article_id in(98,97,96) order by article_id desc
union
select * from articles where article_id = 99

I can't see any pattern to your ordering so I can't think of any other way to do this.

link|flag
This looks not scalable to me, coz the article_id sequence's order could be random as you said no pattern. – Shawn Nov 6 at 4:40
96,97,98,99 looks like a pattern to me! – James Anderson Nov 6 at 4:46
@Shawn: If you want it scalable, you could build the query string dynamically: $query="select * from articles where article_id in(".$in_list_1.") order by article_id ".$order1." union select * from articles where article_id in (."$in_list_2".) order by article_id ".$order2 – FrustratedWithFormsDesigner Nov 6 at 4:49
@FrustratedWithFormsDesigner: You way should work but looks too dirty tho. Thanks anyway. – Shawn Nov 6 at 4:55

Your Answer

Get an OpenID
or

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