For Ex. lets say we have this SQL Query:
it returs rows orderd by column -- 1,2,13,26,32
How can i query the table so the order of the rows will be 26,1,13,32,2 
| Code: |
| SELECT * FROM table WHERE column in (26,1,13,32,2) |
it returs rows orderd by column -- 1,2,13,26,32
