Viewing 2 posts - 1 through 2 (of 2 total)
Do you mean some sort of pagination query kind of thing
SELECT TOP 100 * FROM (SELECT
ROW_NUMBER() OVER (ORDER BY Date) AS RowNumber,
*
FROM
...
March 11, 2010 at 2:39 am
#1131889
I agree with Paul. The convention I follow is that
1. If I need the columns in the select list from only 1 of the tables then I use subquery....
March 8, 2010 at 12:33 am
#1129866