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?