Jag tror att du kan använda left joins för att göra detta. Prova den här frågan, med dina exempeldata producerar den önskad utdata, förutom ApprovedQty
, men jag förstår inte hur du kom fram till 12
för det med exempeldata:
select
d.LOTQty,
ApprovedQty = count(d.ProductNo),
d.DispatchDate,
Installed = count(a.ProductNo) + count(r.ProductNo)
from
Despatch d
left join
Activation a
on d.ProductNo = a.ProductNo
and d.DispatchDate < a.ActivationDate
and d.LOTQty = a.LOTQty
left join
Replaced r
on d.ProductNo = r.ProductNo
and d.DispatchDate < r.RecordDate
-- only count Replaced when there is no match in Activation
-- or DispatchDate is greater then ActivationDate
and (a.ActivationDate is null or a.ActivationDate < d.DispatchDate)
where
d.LOTQty = 20
group by
d.LOTQty, d.DispatchDate
detta skulle mata ut:
LOTQty ApprovedQty DispatchDate Installed
20 6 2013-08-07 5