Hello
I have the following query (I'm using mysql)
SELECT * FROM campaigns where campaign_id IN ( 'idStrOne', 'idStrTwo', 'idStrThree' );
The results of which are being ordered by the primary key of the table campaigns which is 'id'. This is not the order I want.
I want the results to come back in the same order as the arguments to the IN function. So in this case the order I want is
idStrOne, idStrTwo, idStrThree
How do I get this order ?