Popular Posts

SQLblog.com - The SQL Server blog spot on the web

Wednesday, September 20, 2017

First and last values before a partition change

SQLServerCentral » Latest topics
First and last values before a partition change
give the following data set:

[code language="sql"]
create table #t (CustomerID INT, Stage int, GroupStage int, FromDt date, ToDt date);

insert #t
values
    (1001,

No comments: