Hi, I have a SQL query like
SELECT column1,column2
FROM table1
WHERE column1 IN('q1','q2','q3')
The results are shown in the order:
q1
q2
q3
If I change the query to
SELECT column1,column2
FROM table1
WHERE column1 IN('q3','q1','q2')
Still the order remains same.
How to achieve this ordering in the sql statement?
Help!!
Thanks