Hi all,
As you know, we can select the top or bottom set number of records by specifying something like...
Is there something like mid or middle where we can specify what record to start at, and how many records to retrieve after that?
For instance, if a query would return 100 records, and we want records 20 through 30, is there something where we can say...
-Ovatvvon :-Q
As you know, we can select the top or bottom set number of records by specifying something like...
Code:
Select Top 25 * From someDBname
Is there something like mid or middle where we can specify what record to start at, and how many records to retrieve after that?
For instance, if a query would return 100 records, and we want records 20 through 30, is there something where we can say...
Code:
Select Mid(20,10) * From DBname
-Ovatvvon :-Q