I have a simple table:
ID    |     Name
0183        namez
2543        etc
2654        etc
4364        namez
3246        namey
3745        namew
3464        namem
7524        etc
2459
2457
0845
9325
I need to be able to select the 6th thru 10th rows or the 4th thru 25th or whatever, so that I can select only the rows that I need without using any kind of Id column, also it's alway Xth "thru" Yth, because I'm not hardcoding an column names here, I can't use order by but have to use natural order. Is this even possible? Thanks for any help.