Hi!
If you don't have any into your db you can do two way!
First! add a column to your db!Set it to int(8) autoinc!
Second! Use "LIMIT start, count" instead "where min<id<max"!
Your "Select from my_view_table where id>$id_1 and id<$id_2"
is now "Select from my_view_table LIMIT $id_1,".($id_2-$id_1) !
I hope this helps you!