I think I finally understand what you are trying to get at, but it appears you are very confused about how databases perform ordering operations.
If I understand you correctly, you are concerned about the performance impact of sorting a large number of rows (1,000 in your example, though that is NOT a large number of rows). So you are trying to outsmart it by only making it sort the 100 rows you are interested in.
If you apply a where clause to limit it to 100 rows, in most cases a modern DB system will automatically hold off on performing the sort until after it has narrowed down the results to avoid doing extra work. This is not true 100% of the time, but when the DB optimizer decides to sort first, it usually has a VERY good reason based on performance or because the query has identified a condition whereby the sort must be performed first to get
accurate results.
The trick is that you have to understand that tSQL is a Declarative language not a procedural one. That is, you use the language to describe what you want, and the optimizer figures out the exact algorithm to make that happen. It appears that you are trying to optimize your code the way you would as if you were writing a procedural language like C# or Java. SQL translates your query into code, it doesn't run it as you type it.
Long story short, the DB engines are extremely good at this type of simple optimization (and some very complex ones). You aren't going to out-optimize the optimizer with gimmicks like this, so don't even bother. You aren't going to get more performance and depending on how you write the query, you could actually degrade it.