Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Correspondance des données de trois tables dans Sql Server 2008

Je pense que vous pourriez utiliser des jointures à gauche pour le faire. Essayez cette requête, avec vos exemples de données, elle produit la sortie souhaitée, à l'exception de ApprovedQty , mais je ne comprends pas comment vous êtes arrivé à 12 pour cela avec les exemples de données :

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

cela donnerait :

LOTQty  ApprovedQty DispatchDate    Installed
20      6           2013-08-07      5