B
Bertus Dam
I have the following query:
SELECT id, field1, field2 FROM tableX WHERE id IN (8,2,34,16)
I want the result of this query to be sorted on (8,2,34,16). So I want the
record with id 8 first, the record with id 2 second, etc. Is this possible?
Bertus
SELECT id, field1, field2 FROM tableX WHERE id IN (8,2,34,16)
I want the result of this query to be sorted on (8,2,34,16). So I want the
record with id 8 first, the record with id 2 second, etc. Is this possible?
Bertus