Hi!
My fields: id, order
id contains just a integer.
order contains "1,3,4,2" for example.
I want to order my results using FIELD().
Example (works fine): ORDER BY FIELD (id,1,2,3,4)
Now I want to use the value of the field ORDER within the query:
Example: ORDER BY FIELD (id, order)
I hope to get ORDER BY FIELD (id,1,3,4,2).
How can I transform the value of orderto work within my query?
Thanks in advance!
Fox