cruel
Programmer
- Aug 6, 2001
- 131
I have a very large table and it has quite a few indices. I need to locate a record that comes right after another record with certain event in terms of time. The nature order of the records in the table is not in time order. So normally one would use order by statement to have it sorted first. However, since the table is huge and there is a time limit for the data processing, I am wondering what I could do to speed up the process. The field that contains the time data is indexed. Can I use this index info to locate the record without sorting the the data? Thanks