i have been execute simple 3 sql query
SELECT * FROM Table where rowid in(1,2,3)
SELECT * FROM Table where rowid in(2,1,3)
SELECT * FROM Table where rowid in(3,2,1)
all Query return same result. means execute Query first in(1,2,3) so get result like
1) first record which rowid is 1
2) second record which rowid is 2
3) third record which rowid is 3
same like other Query.
If I'm calling second and third Query the result are same like first Query but I want get result by rowid calling sequence.