• drew.allen (5/4/2016)


    Ed Wagner (5/3/2016)


    I guess I must not understand the question either. From the way I read it, I would do something like this:

    SELECT TOP 2 DateColumn

    FROM dbo.TableName

    ORDER BY DateColumn;

    You need a descending order here if you want the two highest dates.

    Drew

    DOH! Thanks, Drew.