The following query works, but MySQL sorts the results set:
SELECT STRINGTEXT FROM WEBSTRINGS WHERE GUI=0 AND LANGID='GB' AND TOKENID IN
(312,47,48,49,50,51,52,53,54,55,56,57,58,60,61,62, 63,87,88,89,90,208,210,249,309,310,311);
This means that when I grab this in my recordset the data for TOKENID 312
is
at the end rather than being the first one, eg
I expected my resultset to come back in the following order of requests:
312,47,48,49,50,51,52,53,54,55,56,57,58,60,61,62,6 3,87,88,89,90,208,210,249,309,310,311
but it comes back as:
47,48,49,50,51,52,53,54,55,56,57,58,60,61,62,63,87 ,88,89,90,208,210,249,309,310,311,312
Is there anyway to get MySQL to not do this for this query? I really need them to come back as is.