But that would run all rows and might take awhile?
maybe Select top 1000 * From table?
So doing just the select statement is faster?
Thanks
Vitor Montalvão
Is not even a speed matter. Do you really want to return all rows or only the first 1000?
If you want all rows then TOP 1000 can't be a solution for you.
maybe Select top 1000 * From table?
So doing just the select statement is faster?
Thanks