i have a query like this
SELECT TOP 10
*
FROM NEWS
WHERE newsid > AAA
ORDER BY newsid desc;
this query is very slow for some values of AAA
for example it is fast for 1,000,000 and 1,400,000 but it is slow for 1,355,316
I am confused!!!