• To give the example of LEAD() as proposed by LinksUp.

    SELECT categoryID,

    EffectiveDate AS StartDate,

    DATEADD( dd, -1, LEAD(EffectiveDate) OVER( PARTITION BY categoryID ORDER BY EffectiveDate) ) AS EndDate,

    CategoryValue

    FROM cattimelines

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2