I have a query like this:

SELECT title,id FROM table1 WHERE id IN ('2','7','4','10')

The result set is ordered by id by default,but i need in the exact order of numbers in above set.

How can i achieve it?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The FIELD() function should be able to do this:

SELECT
    title, id
FROM
    table1
WHERE
    id IN ('2', '7', '4', '10')
ORDER BY FIELD(id, '2', '7', '4', '10')

See also MySQL sort after argument in IN().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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