SQLite Forum

select in order
Login
I have the following command:

*SELECT * FROM products WHERE id IN (13,3,2,5,9,12,7)*

it returns the results in ascending order

how do I get the results as I sent them ?

like:

1 record:

13

2 record:

3

3 record:

2

etc.