Im using a SELECT with a WHERE IN statement, in my WHERE IN im using a array of ids thats in a particular order, lets say 8, 1, 2. The problem is that MySQL reorder it based on the index wich is the id column itself. It will give my results back, but in a ASC order: 1, 2, 8.
I want to be able to keep the array order, is that possible?