Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: query help

    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

    ...

  • RE: Subquery to Joins

    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....

Viewing 2 posts - 1 through 2 (of 2 total)