I have a table as follows,
table1

When i m using the query
"SELECT cat_title FROM table1 WHERE cat_id IN(21,10,25,4)"
the result is in the order
cat_title
Bank
Beauty Parlour
Car
Accomodation
But i need the result as given in the query like,
cat_title
Car
Beaty Parlour
Accomodation
Bank
What will i do?
You can try this:
or