Hi,
I have a rather basic query in the form of
select * from table where column in (1,2,3,4) order by column asc
The query for examples sake would return rows 1,2, and 3 and not return 4. Yet if I take out the order by clause then it returns all the results.
Does anyone know what could be causing that?
Thanks.