Search Results

2
votes
2answers
347 views

Does query plan optimizer works well with joined/filtered table-valued functions?

In SQLSERVER 2005, I'm using table-valued function as a convenient way to perform arbitrary aggregation on subset data from large table (passing date range or such parameters). I'm using th …
3
votes

How do I select top 10 rows in a table without sorting?

if random order is needed, you can try select top 10 * from [tablename] order by newid() …