Is it possible to do a SELECT statement with a predetermined order, ie. selecting IDs 7,2,5,9 and 8 and returning them in that order, based on
SELECT
You may need to create a temp table with an autonumber field and insert into it in the desired order. Then sort on the new autonumber field.