Hi, I am running a simple select query to get some numbers back like the following.
select * from TABLE where NUMBER in ('0334','0980','0116','0633','0116D','0115','0114' ,'0141','0635','8371','0240','0142','0316','2478', '0913','0108','0982','0731','0147','2460').
I am expecting the results in the order the IDs are mentioned in the query. But DB2 is by default sorting the number in the resultset. So the first record is showing as 0108 instead of 0334. Is there any way I can turn-off this default ordering of numbers.
Thanks in advance for your help.