|
So if i'm understanding it right you want to create a MySQL SELECT Query which sorts the result in a "unlogical" way..
Hmm, as far as I now this isn't possible, because you are not following any logic. What I would suggest in here is that you SELECT the data in any order, and then store them in 'acossiative' array ($array['textinhere']). And when showing the data in your specific order you do it manually.
Or you could also create a column in the table where you input the order of them in numbers and then: "SELECT * FROM my_table ORDER BY my_order ASC" (like the first one being a row with the my_order field = 1).
Whenever you want to create your own order there is not much help than to do it manually.
|