Hi Harish,
did I understand correct?
Please see below, thanks for your help
create table #Table1 ( Start_Date date, Name varchar(100),qty int,Location varchar(100) null)
insert into #Table1 select '1/1/2022','Apple',2,'1st row'
insert into #Table1 select '1/1,2022','orange',10,'2nd row'
insert into #Table1 select '2/1//2022','Apple',5,null
insert into #Table1 select '2/1/2022','Kiwi',1,'10th row'
create table #Table2 ( Start_Date date, Name varchar(100),qty int,Location varchar(100) null)
insert into #Table2 select '3/1/2022','orange',9,null
insert into #Table2 select '4/1,2022','Apple',10,'3rd row'
insert into #Table2 select '5/1//2022','kiwi',4,null
insert into #Table2 select '5/1/2022','Apple',2,'5th row'
insert into #Table2 select '6/1/2022','Apple',5,null