Popular Posts

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

Saturday, September 30, 2017

Return parents for children with certain condition

SQLServerCentral » Latest topics
Return parents for children with certain condition
Ok, so here is my sample data I am testing against...

declare @t table (
  Id  int ,
  Section int,
  DateOccured DATE,
    Missed int
);

insert into @t values

No comments: