example –
select * from discussion where title like '%india%'
UNION
select * from discussion where title like '%Australia%'
It shows me results in order of discussion IDs mixing both typse of results
I want to display India results first then Australia’s results and I cant use Option ALl as I need to remove duplicate rows also.
What should be done?
You could add a column to order on
EDIT – 29/11/2010
Due to the duplicate with ORD problem i was thinking about a, maybe, more elegant way to achive this