i have a mysql like this
SELECT * FROM table WHERE id IN(3245,76,3466,998,12984,4466,931,50,728)
is there any way i could get the results of the query ordered by the order the id's have in the IN clause?
Thanks a lot
UPDATE: i've just found this question covered here Althought, my IN clause does contain up to 5000 id's, so would the use of 'FIELD' the best solution out there?