I want to fetch records from a table using the sequence provided in "IN" operator
select * from table where id in (10, 5, 30)
I want this result
ID | Name
10 | Xyz
5 | Abc
30 | Jkl
but it is actually showing this result
ID | Name
5 | Abc
10 | Xyz
30 | Jkl