次のクエリを実行しようとしています。
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
このサイトを初めて利用するため、まだ画像を投稿できませんが、結果は次のようになります。
questionid -> 5,6 ,10,11
ただし、上記のselectステートメントと同じ順序で結果を表示したいと思います。つまり、questionid = 6が最初に返され、次に5が返されます。