darbnacnud
Programmer
Here's the problem. I have a table with about 200,000 records. If I use this statement "Select PartNo from tblInventory where PartNo= [string]" the result is instant. Problem is I need to get part numbers beginning at a range so I use "Select Top 10 PartNo from tblInventory where PartNo >= [String] Order by PartNo" and it is very slow. I have an Index on PartNo. Any help would be appreciated.