Say I have:
select ENTRYID,OTHERSTUFF from SOMETABLE WHERE ENTRYID IN (20,2,15,8);
Now, how would one go about having it order by the IN order?
Like, spit out 20 first, then 2, then 15, then 8?
As is, the above will spit out the contents in the order as it feels (which is normally the insert order from the start).
Help?
Thanks.