I have a Claim Table in which are saved the Claims received from customers as follows
create table claims(id int identity(1,1), Reception_Date datetime, Fixing_Date datetime)
If the Fixing_Date is Null, it means that the claim is not fixed otherwise it is fixed.
I want to create a stored procedure which returns, for a given year, the following data: The columns returned are
Week number
Date of the end of that week (a Sunday)
Number of received claims
Number of Fixed Claims
Number of non Fixed claims at the end of that week
Example of Data:
insert into claims (reception_date,fixing_date)
values
('02/20/2019 16:15','01/03/2020 17:00'),('01/04/2020 16:15','01/06/2020 17:00'),
('01/09/2020 16:15','09/21/2020 17:00'),('01/10/2020 16:15','10/21/2020 17:00'),
('10/10/2020 16:15','10/25/2020 17:20'),('10/24/2020 16:15','10/29/2020 14:20'),
('10/10/2020 16:15',NULL),('10/30/2020 16:15','10/31/2020 17:20'),
('10/10/2020 16:15','01/11/2020 16:22'),('11/01/2020 16:15','10/17/2020 08:20'),
('02/11/2020 16:15',NULL),('03/11/2020 16:15','10/11/2020 08:00'),
('05/11/2020 16:15',NULL),('05/11/2020 16:15','06/11/2020 11:20'),
('06/11/2020 16:15',NULL)
The procedure I created is the following, if you have a more performant solution please add it
Link to SQL FIDDLE