1|Health & Fitness
2|Cardiovascular
3|General Fitness
4|Pilates
5|Technology
6|Artificial Intelligence
7|Advance Learning Machines
8|Virtual and Augmented Reality.
this is data in my table.
I want to get data in between Health & Fitness & Technology
2
Answers
Try a query like this
query with auto min / max
If there are no other fields in the table, then this task can not be solved with some simple syntax. The problem is that data in a relation (table) is unsorted and in general, if you run simple select statements like
you may get records in any order.
Whereas, if you have a field, by which you can sort or set a range, then you can try the above solution by Bernd Buffen.