I'm trying to run the following query:
select * from (select * from customquestionbank where questionid=6 or secondquestionid=6
union select * from customquestionbank where questionid=5 or secondquestionid=5
union select * from customquestionbank where questionid=10 or secondquestionid=10
union select * from customquestionbank where questionid=11 or secondquestionid=11) Tabled
Being new to this site I cannot post images yet, but here is what the result look like:
questionid -> 5,6 ,10,11
However, I want the result to be displayed in the same order as my select statements above. In other words, questionid=6 returned first, then 5, and so on.
customquestionbank(apart fromquestionidandsecondquestionid?) – Martin Smith May 25 '12 at 8:42(questionid, secondquestionid)=(5, 6)and(6, 5), accordingly, how shall they be sorted? – Quassnoi May 25 '12 at 8:55